diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-02-18 11:43:58 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-02-18 11:44:46 +0200 |
commit | 1704dbe99b6b124450c3c205e056033db53a653c (patch) | |
tree | bd71cb1eb361c60803b3ba8224a7ddfc6bbe7ced /idl | |
parent | 33fa50e1191c75fd2fcbf6f852ec1d76af58a577 (diff) |
Drop 16-bit Windows code
Diffstat (limited to 'idl')
-rw-r--r-- | idl/source/prj/idldll.cxx | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/idl/source/prj/idldll.cxx b/idl/source/prj/idldll.cxx index ac891ef470c4..bdfb26ddcccb 100644 --- a/idl/source/prj/idldll.cxx +++ b/idl/source/prj/idldll.cxx @@ -29,48 +29,4 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_idl.hxx" -#ifdef WIN -#include <svwin.h> - -#include <sysdep.hxx> - -// static DLL handle -static HINSTANCE hDLLInst = 0; // HANDLE of the DLL - - -/*************************************************************************** -|* -|* LibMain() -|* -|* description initializing function of the DLL -|* -***************************************************************************/ - -extern "C" int CALLBACK LibMain( HINSTANCE hDLL, WORD, WORD nHeap, LPSTR ) -{ -#ifndef WNT - if ( nHeap ) - UnlockData( 0 ); -#endif - - hDLLInst = hDLL; - - return TRUE; -} - -/*************************************************************************** -|* -|* WEP() -|* -|* description DLL de-initializing -|* -***************************************************************************/ - -extern "C" int CALLBACK WEP( int ) -{ - return 1; -} - -#endif - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |