Revision: | 323 |
Committed: | Sun May 17 12:19:35 2009 UTC (16 years, 4 months ago) by rossy |
Content type: | text/x-chdr |
File size: | 389 byte(s) |
Log Message: | DDrPlatform_Initialize |
# | Content |
---|---|
1 | #pragma once |
2 | #ifndef ONI_H |
3 | #define ONI_H |
4 | |
5 | typedef struct |
6 | { |
7 | HINSTANCE Instance; |
8 | HWND Window; |
9 | } ONtPlatformData; |
10 | |
11 | void __cdecl ONiMain(int ArgCount, char *ArgList[]); |
12 | short ONICALL ONrPlatform_Initialize(ONtPlatformData *PlatformData); |
13 | LRESULT CALLBACK ONrPlatform_WindowProc(HWND Window, UINT Message, WPARAM WParam, LPARAM LParam); |
14 | |
15 | extern HINSTANCE g_Instance; |
16 | |
17 | #endif |