/tags/build48/harbour/source/vm/maindll.c
C | 109 lines | 38 code | 16 blank | 55 comment | 0 complexity | 8da0717127b05048ce00f349da3398f7 MD5 | raw file
Possible License(s): AGPL-1.0, BSD-3-Clause, CC-BY-SA-3.0, LGPL-3.0, GPL-2.0, LGPL-2.0, LGPL-2.1
- /*
- * $Id: maindll.c 6764 2006-07-18 01:30:23Z druzus $
- */
- /*
- * Harbour Project source code:
- * Windows self-contained DLL entry point
- *
- * Copyright 1999 Antonio Linares <alinares@fivetech.com>
- * www - http://www.harbour-project.org
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version, with one exception:
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this software; see the file COPYING. If not, write to
- * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
- * Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
- *
- * As a special exception, the Harbour Project gives permission for
- * additional uses of the text contained in its release of Harbour.
- *
- * The exception is that, if you link the Harbour libraries with other
- * files to produce an executable, this does not by itself cause the
- * resulting executable to be covered by the GNU General Public License.
- * Your use of that executable is in no way restricted on account of
- * linking the Harbour library code into it.
- *
- * This exception does not however invalidate any other reasons why
- * the executable file might be covered by the GNU General Public License.
- *
- * This exception applies only to the code released by the Harbour
- * Project under the name Harbour. If you copy code from other
- * Harbour Project or Free Software Foundation releases into a copy of
- * Harbour, as the General Public License permits, the exception does
- * not apply to the code that you add in this way. To avoid misleading
- * anyone as to the status of such modified files, you must delete
- * this exception notice from them.
- *
- * If you write modifications of your own for Harbour, it is your choice
- * whether to permit this exception to apply to your modifications.
- * If you do not wish that, delete this exception notice.
- *
- */
- #define HB_OS_WIN_32_USED
- #include "hbvm.h"
- #include "hbapiitm.h"
- #if defined(HB_OS_WIN_32)
- HB_EXPORT BOOL WINAPI DllEntryPoint( HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved )
- {
- HB_TRACE( HB_TR_DEBUG, ("DllEntryPoint(%p, %p, %p)", hInstance, fdwReason,
- pvReserved ) );
- HB_SYMBOL_UNUSED( hInstance );
- HB_SYMBOL_UNUSED( fdwReason );
- HB_SYMBOL_UNUSED( pvReserved );
- switch( fdwReason )
- {
- case DLL_PROCESS_ATTACH:
- hb_vmInit( FALSE ); /* Don't execute first linked symbol */
- break;
- case DLL_PROCESS_DETACH:
- hb_vmQuit();
- break;
- }
- return TRUE;
- }
- HB_EXPORT LONG PASCAL HBDLLENTRY( char * cProcName )
- {
- hb_itemDoC( cProcName, 0, 0 );
- return 0;
- }
- HB_EXPORT LONG PASCAL HBDLLENTRY1( char * cProcName, LONG pItem )
- {
- hb_itemDoC( cProcName, 1, ( PHB_ITEM ) pItem, 0 );
- return 0;
- }
- HB_EXPORT LONG PASCAL HBDLLENTRY2( char * cProcName, LONG pItem1, LONG pItem2 )
- {
- hb_itemDoC( cProcName, 2, ( PHB_ITEM ) pItem1, ( PHB_ITEM ) pItem2, 0 );
- return 0;
- }
- #endif