Last change
on this file since 381 was 326, checked in by rossy, 15 years ago |
This is the first "non-working" commit of Daodan. For this reason, the last fully working release is in the /release/ folder while the current build is in the /build/ folder. The reason it's not working is that I'm trying to write a "proper" windowed mode by replacing ONrPlatform_Initialize and gl_platform_initialize. I'm currently in the middle of rewriting gl_platform_initialize and Oni's draw engine doesn't like the new code.
|
File size:
506 bytes
|
Rev | Line | |
---|
[272] | 1 | #pragma once
|
---|
| 2 | #ifndef BFW_UTILITY_H
|
---|
| 3 | #define BFW_UTILITY_H
|
---|
| 4 |
|
---|
| 5 | #include <stdio.h>
|
---|
[275] | 6 | #include <stdint.h>
|
---|
| 7 | #include "Daodan.h"
|
---|
[272] | 8 |
|
---|
| 9 | void __cdecl UUrStartupMessage(const char* fmt, ...);
|
---|
[275] | 10 | int64_t ONICALL UUrMachineTime_High();
|
---|
| 11 | double ONICALL UUrMachineTime_High_Frequency();
|
---|
[276] | 12 | int64_t ONICALL UUrMachineTime_Sixtieths();
|
---|
[322] | 13 | void ONICALL UUrPlatform_Initialize();
|
---|
| 14 | void ONICALL UUrPlatform_Terminate();
|
---|
[272] | 15 |
|
---|
[326] | 16 | int __cdecl AUrMessageBox(int Buttons, char *Message, ...);
|
---|
| 17 |
|
---|
[272] | 18 | extern FILE* ONgFileStartup;
|
---|
| 19 |
|
---|
| 20 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.