Re: RegQueryValueEx() returns zero
Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance
"Starglider 4 (Marco Knoester)" wrote:
What am I doing wrong here?
[...]
DWORD _s=sizeof(REG_DWORD);
In addition to other answer. This should be
DWORD _s=sizeof(DWORD);
REG_DWORD value is just a flag.
Alex
.
Relevant Pages
- Re: Passion for programming or business!
... "Starglider 4 (Marco Knoester)" wrote: ... (be it family or business-relations). ... Bill is not different from any other big CEO in that respect. ... Alex' "everything". ... (microsoft.public.vc.language) - Re: Frage zu DWORD
... Objekt und noch ein zusätzliches Flag setzen. ... DWORD in LowWord und HiWord aufzuteilen und ins eine den Pointer zu ... in neueren Versionen wurde dieses DWORD durch einen ... Zeiger zum Flag extern dazu. ... (microsoft.public.de.vc) - Re: SSE2 register addition (linux gas)
... would the carry bit be added to the next higher dword? ... independantly, and the carry flag goes into the EFLAGS register, if I ... They are meant to work on, up to, qwords. ... (comp.lang.asm.x86) - Re: Interprocess communication using message queue
... DWORD size, flag; ... DWORD err = GetLastError; ... DWORD err1 = GetLastError(); ... (microsoft.public.pocketpc.developer) - Re: how to write to a file without race condition
... > implemented as setting the O_APPEND flag, as the previous poster ... on disk at the time of the write, I assumed this is what Alex was thinking ... clobber each other. ... (comp.unix.programmer) |
|