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.
47 lines
1.0 KiB
47 lines
1.0 KiB
/*===================================================================
|
|
Microsoft
|
|
|
|
Microsoft Confidential.
|
|
Copyright 1997 Microsoft Corporation. All Rights Reserved.
|
|
|
|
Component: VPTOOL a WAMREG unit testing tool
|
|
|
|
File: module.h
|
|
|
|
Owner: leijin
|
|
|
|
Note:
|
|
===================================================================*/
|
|
|
|
#ifndef _VPTOOL_MODULE_H_
|
|
#define _VPTOOL_MODULE_H_
|
|
|
|
|
|
#include <objbase.h>
|
|
|
|
#define SIZE_STRING_BUFFER 1024
|
|
#define uSizeCLSID 39
|
|
|
|
HRESULT ModuleInitialize();
|
|
HRESULT ModuleUnInitialize();
|
|
void CreateInPool(CHAR* szPath, BOOL fInProc);
|
|
void CreateOutProc(CHAR* szPath);
|
|
void Delete(CHAR* szPath);
|
|
void UnLoad(CHAR* szPath);
|
|
void GetStatus(CHAR* szPath);
|
|
void DeleteRecoverable(CHAR* szPath);
|
|
void Recover(CHAR* szPath);
|
|
void GetSignature();
|
|
void Serialize();
|
|
void CREATE2();
|
|
void DELETE2();
|
|
void CREATEPOOL2();
|
|
void DELETEPOOL2();
|
|
void ENUMPOOL2();
|
|
void RECYCLEPOOL();
|
|
void GETMODE();
|
|
void TestConn();
|
|
|
|
extern const BOOL fLinkWithWamReg;
|
|
|
|
#endif //_VPTOOL_MODULE_H_
|