| 1 |
#ifndef ONI_H |
| 2 |
#define ONI_H |
| 3 |
|
| 4 |
#include "Daodan.h" |
| 5 |
#include "Oni_GL.h" |
| 6 |
#include <windows.h> |
| 7 |
#include "Oni_GameState.h" |
| 8 |
|
| 9 |
typedef unsigned char onibool; |
| 10 |
|
| 11 |
typedef struct { |
| 12 |
HINSTANCE Instance; |
| 13 |
HWND Window; |
| 14 |
} ONtPlatformData; |
| 15 |
|
| 16 |
|
| 17 |
void ONICALL TMrInstance_GetDataPtr_List( |
| 18 |
char Tag[4], //as in 'ONWC' |
| 19 |
int MaxCount, //# of elements in PointerList |
| 20 |
void** PointerList, //Where the found pointers go |
| 21 |
int* FoundCount //Where the number of pointers found go. |
| 22 |
); |
| 23 |
|
| 24 |
#include "Oni_Symbols.h" |
| 25 |
|
| 26 |
#endif |