mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-18 01:59:19 +02:00
Remove __fastcall calling convention
This commit is contained in:
34
Console.h
34
Console.h
@@ -24,7 +24,7 @@ class Console
|
||||
static int iBits; // podstawowy zestaw lampek
|
||||
static TPoKeys55 *PoKeys55[2]; // może ich być kilka
|
||||
static TLPT *LPT;
|
||||
static void __fastcall BitsUpdate(int mask);
|
||||
static void BitsUpdate(int mask);
|
||||
// zmienne dla trybu "jednokabinowego", potrzebne do współpracy z pulpitem (PoKeys)
|
||||
// używając klawiatury, każdy pojazd powinien mieć własny stan przełączników
|
||||
// bazowym sterowaniem jest wirtualny strumień klawiatury
|
||||
@@ -33,22 +33,22 @@ class Console
|
||||
static int iButton[8]; // monostabilne w kabinie, załączane podczas trzymania klawisza
|
||||
static TKeyTrans ktTable[4 * 256]; // tabela wczesnej konwersji klawiatury
|
||||
public:
|
||||
__fastcall Console();
|
||||
__fastcall ~Console();
|
||||
static void __fastcall ModeSet(int m, int h = 0);
|
||||
static void __fastcall BitsSet(int mask, int entry = 0);
|
||||
static void __fastcall BitsClear(int mask, int entry = 0);
|
||||
static int __fastcall On();
|
||||
static void __fastcall Off();
|
||||
static bool __fastcall Pressed(int x);
|
||||
static void __fastcall ValueSet(int x, double y);
|
||||
static void __fastcall Update();
|
||||
static float __fastcall AnalogGet(int x);
|
||||
static unsigned char __fastcall DigitalGet(int x);
|
||||
static void __fastcall OnKeyDown(int k);
|
||||
static void __fastcall OnKeyUp(int k);
|
||||
static int __fastcall KeyDownConvert(int k);
|
||||
static int __fastcall KeyUpConvert(int k);
|
||||
Console();
|
||||
~Console();
|
||||
static void ModeSet(int m, int h = 0);
|
||||
static void BitsSet(int mask, int entry = 0);
|
||||
static void BitsClear(int mask, int entry = 0);
|
||||
static int On();
|
||||
static void Off();
|
||||
static bool Pressed(int x);
|
||||
static void ValueSet(int x, double y);
|
||||
static void Update();
|
||||
static float AnalogGet(int x);
|
||||
static unsigned char DigitalGet(int x);
|
||||
static void OnKeyDown(int k);
|
||||
static void OnKeyUp(int k);
|
||||
static int KeyDownConvert(int k);
|
||||
static int KeyUpConvert(int k);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user