Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

8 lines
689 B

LONG RegQueryBinaryValue(IN HKEY hkey, IN PCTSTR pValueName, OUT PBYTE *ppData, OUT ULONG *pcbData);
LONG RegQueryDwordValue(IN HKEY hkey, IN PCTSTR pValueName, OUT DWORD *pdwValue);
LONG RegQueryMultiSzValue(IN HKEY hkey, IN PCTSTR pValueName, OUT PTSTR *ppstrValue);
LONG RegQuerySzValue(IN HKEY hkey, IN PCTSTR pValueName, OUT PTSTR *ppstrValue);
LONG RegSetBinaryValue(IN HKEY hkey, IN PCTSTR pValueName, IN PBYTE pValue, IN ULONG cbValue);
LONG RegSetDwordValue(IN HKEY hkey, IN PCTSTR pValueName, IN DWORD dwValue);
LONG RegSetMultiSzValue(IN HKEY hkey, IN PCTSTR pValueName, IN PCTSTR pstrValue);
LONG RegSetSzValue(IN HKEY hkey, IN PCTSTR pValueName, IN PCTSTR pstrValue);