Dave_Scream Cheater
Reputation: 0
Joined: 06 Dec 2009 Posts: 36
|
Posted: Sat May 11, 2024 5:15 am Post subject: ccode section compilation failed undefined symbol '_stricmp' |
|
|
I need VK_SHIFT value from windows headers. I put headers at the top:
{$c}
#include <windows.h>
#include <tchar.h>
#include <string.h>
/*
#include <windows.h>
#include <basetyps.h>
#include <winnt.h>
#include <basetsd.h>
#include <Winuser.h>
*/
#define SPEED_MULTIPLIER_HOTKEY VK_SHIFT
...
[ENABLE]
...
[DISABLE]
And getting error
<<ccode section compilation failed:tcc: error: undefined symbol '_strnicmp'
tcc: error: undefined symbol '_stricmp'
>>
how to fix?
UPD.
Found answer
Dark Byte wrote: | if you add
Code: |
#define NO_OLDNAMES
|
you can ignore the _stricmp and _strnicmp which are used by string.h |
https://forum.cheatengine.org/viewtopic.php?p=5788393#5788393
|
|