mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-22 01:19:19 +02:00
Remove __fastcall calling convention
This commit is contained in:
30
Logs.h
30
Logs.h
@@ -1,15 +1,15 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#ifndef LogsH
|
||||
#define LogsH
|
||||
#include <system.hpp>
|
||||
|
||||
void __fastcall WriteConsoleOnly(const char *str, double value);
|
||||
void __fastcall WriteConsoleOnly(const char *str);
|
||||
void __fastcall WriteLog(const char *str, double value);
|
||||
void __fastcall WriteLog(const char *str);
|
||||
void __fastcall Error(const AnsiString &asMessage, bool box = true);
|
||||
void __fastcall ErrorLog(const AnsiString &asMessage);
|
||||
void __fastcall WriteLog(const AnsiString &str);
|
||||
//---------------------------------------------------------------------------
|
||||
#endif
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#ifndef LogsH
|
||||
#define LogsH
|
||||
#include <system.hpp>
|
||||
|
||||
void WriteConsoleOnly(const char *str, double value);
|
||||
void WriteConsoleOnly(const char *str);
|
||||
void WriteLog(const char *str, double value);
|
||||
void WriteLog(const char *str);
|
||||
void Error(const AnsiString &asMessage, bool box = true);
|
||||
void ErrorLog(const AnsiString &asMessage);
|
||||
void WriteLog(const AnsiString &str);
|
||||
//---------------------------------------------------------------------------
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user