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.
31 lines
1.2 KiB
31 lines
1.2 KiB
// --------------------------------------------------------------------------------
|
|
// Dllmain.h
|
|
// Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
|
|
// Steven J. Bailey
|
|
// --------------------------------------------------------------------------------
|
|
#ifndef __DLLMAIN_H
|
|
#define __DLLMAIN_H
|
|
|
|
// --------------------------------------------------------------------------------
|
|
// Defined later
|
|
|
|
// --------------------------------------------------------------------------------
|
|
// Globals
|
|
// --------------------------------------------------------------------------------
|
|
extern CRITICAL_SECTION g_csDllMain;
|
|
extern CRITICAL_SECTION g_csCounter;
|
|
extern DWORD g_dwCounter; // boundary/cid/mid ratchet
|
|
extern LONG g_cRef;
|
|
extern LONG g_cLock;
|
|
extern HINSTANCE g_hInst;
|
|
extern HINSTANCE g_hLocRes;
|
|
|
|
// --------------------------------------------------------------------------------
|
|
// Prototypes
|
|
// --------------------------------------------------------------------------------
|
|
ULONG DllAddRef(void);
|
|
ULONG DllRelease(void);
|
|
DWORD DwCounterNext(void);
|
|
HRESULT GetTypeLibrary(ITypeLib **ppTypeLib);
|
|
|
|
#endif // __DLLMAIN_H
|