1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
/*
* tnmWinInit.c --
*
* This file contains the Windows specific entry point.
*
* Copyright (c) 1996 University of Twente
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*/
#include "tnmInt.h"
#include "tnmPort.h"
#if defined(__WIN32__)
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
# undef WIN32_LEAN_AND_MEAN
/*
* VC++ has an alternate entry point called DllMain, so we need to rename
* our entry point.
*/
# if defined(_MSC_VER)
# define EXPORT(a,b) __declspec(dllexport) a b
# define DllEntryPoint DllMain
# else
# if defined(__BORLANDC__)
# define EXPORT(a,b) a _export b
# else
# define EXPORT(a,b) a b
# endif
# endif
#else
# define EXPORT(a,b) a b
#endif
/*
* Forward declarations for procedures defined later in this file:
*/
EXTERN EXPORT(int,Tnm_Init) _ANSI_ARGS_((Tcl_Interp *interp));
EXTERN EXPORT(int,Tnm_SafeInit) _ANSI_ARGS_((Tcl_Interp *interp));
/*
*----------------------------------------------------------------------
*
* DllEntryPoint --
*
* This wrapper function is used by Windows to invoke the
* initialization code for the DLL. If we are compiling
* with Visual C++, this routine will be renamed to DllMain.
* routine.
*
* Results:
* Returns TRUE;
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
#ifdef __WIN32__
BOOL APIENTRY
DllEntryPoint(hInst, reason, reserved)
HINSTANCE hInst; /* Library instance handle. */
DWORD reason; /* Reason this function is being called. */
LPVOID reserved; /* Not used. */
{
return TRUE;
}
#endif
/*
*----------------------------------------------------------------------
*
* Tnm_Init --
*
* This procedure is the Windows entry point for trusted Tcl
* interpreters.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* Tcl variables are created.
*
*----------------------------------------------------------------------
*/
EXPORT(int,Tnm_Init)(interp)
Tcl_Interp *interp;
{
return TnmInit(interp);
}
/*
*----------------------------------------------------------------------
*
* Tnm_SafeInit --
*
* This procedure is the Windows entry point for safe Tcl
* interpreters.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* Tcl variables are created.
*
*----------------------------------------------------------------------
*/
EXPORT(int,Tnm_SafeInit)(interp)
Tcl_Interp *interp;
{
return TnmSafeInit(interp);
}
|