This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

14
CryGame/StdAfx.cpp Normal file
View File

@@ -0,0 +1,14 @@
// stdafx.cpp : source file that includes just the standard includes
// CryGame.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
#ifdef WIN64
int __cdecl strcmpi (const char *a, const char *b)
{
return stricmp (a,b);
}
#endif