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.

41 lines
1.1 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996-1998 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // RegComObj.h
  7. //
  8. // Abstract:
  9. // Declaration of functions to register and unregister COM objects.
  10. //
  11. // Implementation File:
  12. // RegComObj.cpp
  13. //
  14. // Author:
  15. // C. Brent Thomas (a-brentt) 27-Mar-1998
  16. //
  17. // Revision History:
  18. //
  19. // Notes:
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. #ifndef __REGCOMOBJ_H_
  23. #define __REGCOMOBJ_H_
  24. /////////////////////////////////////////////////////////////////////////////
  25. // Global Function Prototypes
  26. /////////////////////////////////////////////////////////////////////////////
  27. DWORD RegisterCOMObject( LPCTSTR ptszCOMObjectFileName,
  28. LPCTSTR ptszPathToCOMObject );
  29. DWORD UnRegisterCOMObject( LPCTSTR ptszCOMObjectFileName,
  30. LPCTSTR ptszPathToCOMObject );
  31. BOOL UnRegisterClusterCOMObjects( HINSTANCE hInstance,
  32. LPCTSTR ptszPathToCOMObject );
  33. /////////////////////////////////////////////////////////////////////////////
  34. #endif // __REGCOMOBJ_H_