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.

33 lines
589 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. DBHELP.H
  5. History:
  6. --*/
  7. #if !defined(ESPUTIL_DbHelp_h_INCLUDED)
  8. #define ESPUTIL_DbHelp_h_INCLUDED
  9. //------------------------------------------------------------------------------
  10. class LTAPIENTRY DbHelp
  11. {
  12. // Operations
  13. public:
  14. static void GetSecFilePath(CLString & stPathName);
  15. static BOOL BuildSecFile(CLString & stSystemRegKey);
  16. static BOOL CreateSecurityFile();
  17. static BOOL SetupRegistry();
  18. // Data
  19. protected:
  20. static BOOL m_fInit;
  21. static CLString m_stRegKey;
  22. };
  23. #endif