1 |
#pragma once |
2 |
#ifndef BFW_UTILITY_H |
3 |
#define BFW_UTILITY_H |
4 |
|
5 |
#include <stdio.h> |
6 |
#include <stdint.h> |
7 |
#include "Daodan.h" |
8 |
|
9 |
void __cdecl UUrStartupMessage(const char* fmt, ...); |
10 |
int64_t ONICALL UUrMachineTime_High(); |
11 |
double ONICALL UUrMachineTime_High_Frequency(); |
12 |
int64_t ONICALL UUrMachineTime_Sixtieths(); |
13 |
void ONICALL UUrPlatform_Initialize(); |
14 |
void ONICALL UUrPlatform_Terminate(); |
15 |
|
16 |
void ONICALL COrTextArea_Print(uint32_t area, uint32_t priority, uint32_t textshade, uint32_t textshadowshade, const char* text, uint32_t unk_alwaws_0, uint32_t fadetime); |
17 |
|
18 |
int __cdecl AUrMessageBox(int Buttons, char *Message, ...); |
19 |
|
20 |
extern uint32_t COgConsoleLines; |
21 |
extern uint32_t COgFadeTimeValue; |
22 |
extern uint32_t COgDefaultTextShade; |
23 |
extern uint32_t COgDefaultTextShadow; |
24 |
|
25 |
extern FILE* ONgFileStartup; |
26 |
|
27 |
#endif |