[project @ 2004-02-12 02:04:59 by mthomas]
[ghc-hetmet.git] / ghc / includes / DietHEP.h
1
2 typedef enum { dh_stdcall, dh_ccall } DH_CALLCONV;
3 typedef int                           DH_MODULE;
4 typedef char*                         DH_LPCSTR;
5
6 extern __attribute__((__stdcall__))
7        DH_MODULE DH_LoadLibrary    ( DH_LPCSTR modname );
8 extern __attribute__((__stdcall__))
9        void*     DH_GetProcAddress ( DH_CALLCONV  cconv, 
10                                      DH_MODULE    hModule, 
11                                      DH_LPCSTR    lpProcName );
12
13