Source code of Windows XP (NT5)
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.

27 lines
708 B

  1. //
  2. // MODULE: ComGlobals.h
  3. //
  4. // PURPOSE: Global functions that are handy to have.
  5. //
  6. // PROJECT: Local Troubleshooter Launcher for the Device Manager
  7. //
  8. // COMPANY: Saltmine Creative, Inc. (206)-633-4743 [email protected]
  9. //
  10. // AUTHOR: Richard Meadows
  11. //
  12. // ORIGINAL DATE: 2-26-98
  13. //
  14. //
  15. // Version Date By Comments
  16. //--------------------------------------------------------------------
  17. // V0.1 - RM Original
  18. // V0.3 3/24/98 JM Local Version for NT5
  19. ///////////////////////
  20. #ifndef __COMGLOBALS_H_
  21. #define __COMGLOBALS_H_ 1
  22. bool BSTRToTCHAR(LPTSTR szChar, BSTR bstr, int CharBufSize);
  23. bool ReadRegSZ(HKEY hRootKey, LPCTSTR szKey, LPCTSTR szValue, LPTSTR szBuffer, DWORD *pdwBufSize);
  24. #endif