I've been developing with raylib for quite a while now.
I've gotten libcurl to work, but it doesn't work with windows.h
, because of the functions names overriding others.
However, there is a workaround, by mentioning these defines (in curl.h
):
#define NOGDICAPMASKS - this disables CC_, LC_, PC_, CP_ TC_ RC_
#define NOVIRTUALKEYCODES - this disables VK_
#define NOWINMESSAGES - this disables WM_ EM_ LB_
#define NOWINSTYLES - this disables WS_, CS_, ES_, LBS_, SBS_, CBS_
#define NOSYSMETRICS - this disables SM_
the list goes on an on...
Keep in mind that I don't need these, I won't use any of these since I'm trying to make it as cross-platform as I can, only libcurl includes these BUT it doesn't use them in any way.
What I am asking is, where could I find a full list of these, and if not a define that STOPS the including of PlaySound()
, PlaySoundA()
, etc.. and other functions related to sound, since they are interferring with PlaySound()
from raylib.