rename SetCursor to SetCursor_ to avoid collision with windows.h

Translation done automatically using:
	$ find . -type f -name '*.h' | xargs -I '{}' sar -i "([ \t])(SetCursor)[(]" '${1}${2}_(' '{}'
	$ find . -type f -name '*.h' | xargs -I '{}' sar -i "([ \t])(SetCursor)[(]" '${1}${2}_(' '{}'
This commit is contained in:
Robin Eklind 2018-12-30 02:49:00 +01:00 committed by Anders Jenbo
commit e915623726
12 changed files with 49 additions and 49 deletions

View file

@ -416,7 +416,7 @@ void __fastcall SetICursor(int i)
// 4B8CB4: using guessed type int icursH;
// 4B8CBC: using guessed type int icursW;
void __fastcall SetCursor(int i)
void __fastcall SetCursor_(int i)
{
int v1; // eax
@ -430,12 +430,12 @@ void __fastcall SetCursor(int i)
void __fastcall NewCursor(int i)
{
SetCursor(i);
SetCursor_(i);
}
void __cdecl InitLevelCursor()
{
SetCursor(CURSOR_HAND);
SetCursor_(CURSOR_HAND);
cursmx = ViewX;
cursmy = ViewY;
dword_4B8CCC = -1;