mirror of https://github.com/tongzx/nt5src
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
41 lines
1.1 KiB
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 1996-1998 Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
// RegComObj.h
|
|
//
|
|
// Abstract:
|
|
// Declaration of functions to register and unregister COM objects.
|
|
//
|
|
// Implementation File:
|
|
// RegComObj.cpp
|
|
//
|
|
// Author:
|
|
// C. Brent Thomas (a-brentt) 27-Mar-1998
|
|
//
|
|
// Revision History:
|
|
//
|
|
// Notes:
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __REGCOMOBJ_H_
|
|
#define __REGCOMOBJ_H_
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Global Function Prototypes
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
DWORD RegisterCOMObject( LPCTSTR ptszCOMObjectFileName,
|
|
LPCTSTR ptszPathToCOMObject );
|
|
|
|
DWORD UnRegisterCOMObject( LPCTSTR ptszCOMObjectFileName,
|
|
LPCTSTR ptszPathToCOMObject );
|
|
|
|
BOOL UnRegisterClusterCOMObjects( HINSTANCE hInstance,
|
|
LPCTSTR ptszPathToCOMObject );
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif // __REGCOMOBJ_H_
|