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.
28 lines
464 B
28 lines
464 B
#ifndef DLLMAIN__H_
|
|
#define DLLMAIN__H_
|
|
|
|
extern "C"
|
|
{
|
|
BOOL
|
|
APIENTRY
|
|
DllMain(
|
|
HINSTANCE hInstance,
|
|
DWORD dwReason,
|
|
LPVOID lpReserved
|
|
);
|
|
}
|
|
|
|
STDAPI
|
|
DllCanUnloadNow(void);
|
|
|
|
STDAPI
|
|
DllGetClassObject(
|
|
REFCLSID rclsid,
|
|
REFIID riid,
|
|
LPVOID *ppv
|
|
);
|
|
|
|
|
|
extern HINSTANCE g_hInst;
|
|
|
|
#endif // #ifndef DLLMAIN__H_
|