source: Daodan/src/Oni.h@ 443

Last change on this file since 443 was 437, checked in by rossy, 15 years ago

Daodan_Console

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