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.

38 lines
1.0 KiB

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: espreg.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // Registry and version information for Espresso 2.x
  8. //
  9. //-----------------------------------------------------------------------------
  10. struct LocVersionInfo
  11. {
  12. WORD wVerMajor;
  13. WORD wVerMinor;
  14. WORD wVerBuild;
  15. CString strVerString;
  16. };
  17. LTAPIENTRY void NOTHROW GetVersionInfo(LocVersionInfo &);
  18. LTAPIENTRY BOOL NOTHROW OpenEspressoUserKey(HKEY &);
  19. LTAPIENTRY BOOL NOTHROW OpenEspressoUserSubKey(HKEY &, const CLString &);
  20. LTAPIENTRY BOOL NOTHROW EspressoUserSubKeyExists(const CLString &);
  21. LTAPIENTRY BOOL NOTHROW OpenEspressoMachineKey(HKEY &);
  22. LTAPIENTRY BOOL NOTHROW OpenEspressoMachineSubKey(HKEY &, const CLString &);
  23. LTAPIENTRY BOOL NOTHROW EspressoMachineSubKeyExists(const CLString &);
  24. LTAPIENTRY BOOL NOTHROW MyRegDeleteKey(HKEY &, const TCHAR *);
  25. LTAPIENTRY void NOTHROW GetRegistryString(CLString &);