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