Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

RegSetValue Question

rahzan
New Contributor I
1,044 Views
in using RegSetValueEx, the lpData (ptr to value-data) is quoted as a "buffer" I cannot figure this out. If the value-data is a string, then a null terminated string will do and the length is simply the length of the string.

But what should one use for things like DWORD?
will lpData be loc(an integer(4))?
and will cbData =4 ?

Thanks in adv,
TimH
0 Kudos
1 Reply
rahzan
New Contributor I
1,044 Views
That way will work but A more proper way maybe to declare

integer(DWORD) ivalue

then ivalue can be assigned or read from say a reg fragment in decimal or hex (Z format) form.

then pass loc(ivalue) and valLength=4
0 Kudos
Reply