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.

39 lines
832 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. ESPREG.H
  5. History:
  6. --*/
  7. struct LocVersionInfo
  8. {
  9. WORD wVerMajor;
  10. WORD wVerMinor;
  11. WORD wVerBuild;
  12. CString strVerString;
  13. };
  14. LTAPIENTRY void NOTHROW GetVersionInfo(LocVersionInfo &);
  15. LTAPIENTRY BOOL NOTHROW OpenEspressoUserKey(HKEY &);
  16. LTAPIENTRY BOOL NOTHROW OpenEspressoUserSubKey(HKEY &, const CLString &);
  17. LTAPIENTRY BOOL NOTHROW EspressoUserSubKeyExists(const CLString &);
  18. LTAPIENTRY BOOL NOTHROW OpenEspressoMachineKey(HKEY &);
  19. LTAPIENTRY BOOL NOTHROW OpenEspressoMachineSubKey(HKEY &, const CLString &);
  20. LTAPIENTRY BOOL NOTHROW EspressoMachineSubKeyExists(const CLString &);
  21. LTAPIENTRY BOOL NOTHROW MyRegDeleteKey(HKEY &, const TCHAR *);
  22. LTAPIENTRY void NOTHROW GetRegistryString(CLString &);