home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
BOCOLE.PAK
/
OLEDLL.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-29
|
1KB
|
66 lines
//
//**************************************************************************
//
// OleDLL.cpp -- DLL entry/exit points for BOLE.DLL
//
// Copyright (c) 1993,94 by Borland International, Inc. All rights reserved
//
//**************************************************************************
#include <BOle32.h>
#include <Windows.h>
#include "OLE2UI.h"
HINSTANCE boleInst;
// This works around an RTL bug which leaves Win87EM.DLL locked
//
#if defined(__BORLANDC__) && !defined(WIN32)
extern unsigned _LockWIN87EM;
void WhackRTL () { _LockWIN87EM = FALSE; }
#pragma startup WhackRTL 0
#endif
extern "C" {
#include "ole2ui.h"
}
OLEDBGDATA_MAIN ("BOLE")
extern "C" int FAR PASCAL LibMain( HINSTANCE hInst, WORD, WORD, LPSTR )
{
boleInst = hInst;
OleUIInitialize (boleInst, NULL);
return 1;
}
extern "C" int FAR PASCAL WEP(int /*systemExit*/)
{
OleUIUninitialize ();
return 1;
}
#ifdef WIN32
extern "C" BOOL WINAPI DllEntryPoint( HINSTANCE hInst, DWORD dwReason, LPVOID )
{
switch (dwReason) {
case DLL_PROCESS_ATTACH:
LibMain(hInst, NULL, NULL, NULL);
break;
case DLL_PROCESS_DETACH:
WEP(NULL);
break;
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
break;
}
return 1;
}
#endif