graphitemaster / incbin

Include binary files in C/C++
The Unlicense
938 stars 87 forks source link

clang-cl support. #65

Open API92 opened 1 month ago

API92 commented 1 month ago

Tested with clang-cl.exe on amd64 and x86.

darealshinji commented 1 week ago

This part at the bottom:

#if defined(INCBIN_MSCL)
#  define INCTXT(NAME, FILENAME) \
     INCBIN_EXTERN(NAME)

Should be changed to this:

#if defined(INCBIN_MSCL)
#  define INCTXT(NAME, FILENAME) \
     INCBIN_EXTERN_2(char, NAME)

So that INCTXT() will always create const char * declarations.