123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #include "OpenDoor.h"
- #ifdef ODPLAT_WIN32
- int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
- LPSTR lpszCmdLine, int nCmdShow)
- #else
- int main(int argc, char *argv[])
- #endif
- {
-
- od_printf("Hello world! This is a very simple OpenDoors program.\n\r");
- od_printf("Press any key to return to the BBS!\n\r");
-
- od_get_key(TRUE);
-
- od_exit(0, FALSE);
- return(0);
- }
|