source: GTP/trunk/Lib/Geom/shared/GTGeometry/src/GeoLodLibraryDLL.cpp @ 1788

Revision 1788, 498 bytes checked in by gumbau, 18 years ago (diff)

Added the GeoLodLibraryDLL project which compiles the LodStrips? and LodTrees? librarys into a separate DLL. This DLL is smaller than the static lib.

Line 
1// GeoLodLibraryDLL.cpp: define el punto de entrada de la aplicación DLL.
2//
3
4#include "../include/GeoLodLibraryDLL.h"
5#define WIN32_LEAN_AND_MEAN
6#include <windows.h>
7
8BOOL APIENTRY DllMain( HANDLE hModule,
9                       DWORD  ul_reason_for_call,
10                       LPVOID lpReserved
11                                         )
12{
13        switch (ul_reason_for_call)
14        {
15        case DLL_PROCESS_ATTACH:
16        case DLL_THREAD_ATTACH:
17        case DLL_THREAD_DETACH:
18        case DLL_PROCESS_DETACH:
19                break;
20        }
21    return TRUE;
22}
Note: See TracBrowser for help on using the repository browser.