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.

34 lines
692 B

  1. /*++=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. registry.h
  5. Abstract:
  6. Registry functions
  7. Author:
  8. Paul M Midgen (pmidge) 23-May-2000
  9. Revision History:
  10. 23-May-2000 pmidge
  11. Created
  12. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--*/
  13. #ifndef _REGISTRY_H_
  14. #define _REGISTRY_H_
  15. #include "common.h"
  16. HKEY _GetRootKey(BOOL fOpen);
  17. BOOL SetRegValue(LPCWSTR wszValueName, DWORD dwType, LPVOID pvData, DWORD dwSize);
  18. BOOL GetRegValue(LPCWSTR wszValueName, DWORD dwType, LPVOID* ppvData);
  19. #endif /* _REGISTRY_H_ */