Rev | Line | |
---|
[273] | 1 | #pragma once
|
---|
| 2 | #ifndef ONI_H
|
---|
| 3 | #define ONI_H
|
---|
| 4 |
|
---|
[326] | 5 | #include "Daodan.h"
|
---|
| 6 |
|
---|
[322] | 7 | typedef struct
|
---|
| 8 | {
|
---|
| 9 | HINSTANCE Instance;
|
---|
| 10 | HWND Window;
|
---|
| 11 | } ONtPlatformData;
|
---|
| 12 |
|
---|
[273] | 13 | void __cdecl ONiMain(int ArgCount, char *ArgList[]);
|
---|
[322] | 14 | short ONICALL ONrPlatform_Initialize(ONtPlatformData *PlatformData);
|
---|
[323] | 15 | LRESULT CALLBACK ONrPlatform_WindowProc(HWND Window, UINT Message, WPARAM WParam, LPARAM LParam);
|
---|
[273] | 16 |
|
---|
[323] | 17 | extern HINSTANCE g_Instance;
|
---|
[326] | 18 | extern ONtPlatformData ONgPlatformData;
|
---|
[323] | 19 |
|
---|
[437] | 20 | extern void* ONgGameState;
|
---|
| 21 |
|
---|
[273] | 22 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.