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.

26 lines
818 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1996 - 1998.
  5. //
  6. // File: regutil.h
  7. //
  8. // Contents: Utility funcitons for manipulating the registry
  9. //
  10. // History: 25 Oct 1996 Alanw Created
  11. //
  12. //----------------------------------------------------------------------------
  13. #ifndef _regutil_H_
  14. #define _regutil_H_
  15. // functions to aid in DllRegisterServer() and DllUnregisterServer()
  16. STDAPI _DllRegisterServer(HINSTANCE hInst,
  17. LPWSTR pwszProgId,
  18. REFCLSID clsid,
  19. LPWSTR pwszDescription,
  20. LPWSTR pwszCurVer = 0);
  21. STDAPI _DllUnregisterServer(LPWSTR pwszProgID, REFCLSID clsid);
  22. #endif // _regutil_H_