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.

29 lines
767 B

  1. //******************************************************************************
  2. //
  3. // DbHelp.h: LocStudio LocUtil
  4. //
  5. // Copyright (C) 1994-1997 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. //******************************************************************************
  9. #if !defined(ESPUTIL_DbHelp_h_INCLUDED)
  10. #define ESPUTIL_DbHelp_h_INCLUDED
  11. //------------------------------------------------------------------------------
  12. class LTAPIENTRY DbHelp
  13. {
  14. // Operations
  15. public:
  16. static void GetSecFilePath(CLString & stPathName);
  17. static BOOL BuildSecFile(CLString & stSystemRegKey);
  18. static BOOL CreateSecurityFile();
  19. static BOOL SetupRegistry();
  20. // Data
  21. protected:
  22. static BOOL m_fInit;
  23. static CLString m_stRegKey;
  24. };
  25. #endif