source: Daodan/src/Oni.h@ 454

Last change on this file since 454 was 452, checked in by rossy, 15 years ago

DDrCheater

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