1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

StdCall fix for Win32

This commit is contained in:
Brian Fiete 2020-05-06 05:30:29 -07:00
parent 7e74273a26
commit 7b337a98f4

View file

@ -41,13 +41,13 @@ namespace System
public uint16[2] mMaximumWindowSize;
}
[CLink]
[CLink, StdCall]
static extern int SetConsoleTextAttribute(void* hConsoleOutput, uint16 wAttributes);
[CLink]
[CLink, StdCall]
static extern int GetConsoleScreenBufferInfo(void* hConsoleOutput, out CONSOLE_SCREEN_BUFFER_INFO lpConsoleScreenBufferInfo);
[CLink]
[CLink, StdCall]
static extern void* GetStdHandle(uint32 nStdHandle);
#if BF_PLATFORM_WINDOWS