00001 00003 // 00004 // Insert copyright here. 00005 // 00007 00009 // 00010 // Defines the initialization routines for the DLL. 00011 // 00013 00014 #include "osgVRJPrecompiled.h" 00015 00016 #ifdef _WIN32 00017 00018 00020 // 00021 // Entry point for Win32 DLL. 00022 // 00024 00025 BOOL APIENTRY DllMain ( HINSTANCE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) 00026 { 00027 return TRUE; 00028 } 00029 00030 00031 #else 00032 00033 00035 // 00036 // Entry point for unix shared library. 00037 // 00039 00040 void _init() 00041 { 00042 // Empty. 00043 } 00044 00045 00047 // 00048 // Exit function for unix shared library. 00049 // 00051 00052 void _fini() 00053 { 00054 // Empty. 00055 } 00056 00057 00058 #endif