003
06.10.2003, 08:37 Uhr
Tommix
|
Hallo,
Zitat: |
lpcbData Pointer to a variable that specifies the size, in bytes, of the buffer pointed to by the lpData parameter. When the function returns, this variable contains the size of the data copied to lpData.
|
Muss also IMHO so aussehen:
C++: |
DWORD size = sizeof(DWORD); RegQueryValueEx(hKey, TEXT("irgendwas"), NULL, NULL, (BYTE *) &variable, &size);
|
Gruss, Tommix |