32 lines
800 B
C++
32 lines
800 B
C++
/* ************************
|
|
Copyright Terrain Experts Inc.
|
|
Terrain Experts Inc (TERREX) reserves all rights to this source code
|
|
unless otherwise specified in writing by the Chief Operating Officer
|
|
of TERREX.
|
|
This copyright may be updated in the future, in which case that version
|
|
supercedes this one.
|
|
-------------------
|
|
Terrex Experts Inc.
|
|
84 West Santa Clara St., Suite 380
|
|
San Jose, CA 95113
|
|
info@terrex.com
|
|
Tel: (408) 293-9977
|
|
************************
|
|
*/
|
|
|
|
/* trpage_main.cpp
|
|
This file is here to provide a DLL Main.
|
|
Note: #ifdef this out on non-windows machines
|
|
*/
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#include "trdll.h"
|
|
|
|
TXDUMMY_DLL_MAIN
|