16
0
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:
Zbigniew Mandziejewicz
2015-04-03 22:10:22 +08:00
parent 91c96bedbf
commit 9eb087b96e
98 changed files with 54005 additions and 54005 deletions

30
Logs.h
View File

@@ -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