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.
25 lines
943 B
25 lines
943 B
// --------------------------------------------------------------------------------
|
|
// Dllmain.h
|
|
// Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
|
|
// Steven J. Bailey
|
|
// --------------------------------------------------------------------------------
|
|
#ifndef __DLLMAIN_H
|
|
#define __DLLMAIN_H
|
|
|
|
// --------------------------------------------------------------------------------
|
|
// Globals
|
|
// --------------------------------------------------------------------------------
|
|
extern CRITICAL_SECTION g_csDllMain;
|
|
extern LONG g_cRef;
|
|
extern LONG g_cLock;
|
|
extern HINSTANCE g_hInstImp;
|
|
|
|
// --------------------------------------------------------------------------------
|
|
// Prototypes
|
|
// --------------------------------------------------------------------------------
|
|
ULONG DllAddRef(void);
|
|
ULONG DllRelease(void);
|
|
|
|
#include "demand.h"
|
|
|
|
#endif // __DLLMAIN_H
|