Got raylib bootstrapped to compile

Still need to setup a refactor script among other things before using.
This commit is contained in:
2023-10-24 06:00:28 -04:00
parent d5a4b77033
commit a900e86b65
17 changed files with 10597 additions and 38 deletions

View File

@ -1,4 +1,4 @@
/* Platform architecture */
// Platform architecture
#if defined( _WIN64 ) || defined( __x86_64__ ) || defined( _M_X64 ) || defined( __64BIT__ ) || defined( __powerpc64__ ) || defined( __ppc64__ ) || defined( __aarch64__ )
# ifndef ARCH_64_BIT

View File

@ -0,0 +1,8 @@
#if INTELLISENSE_DIRECTIVES
#include "win32.hpp"
#endif
int __stdcall WinMain( HINSTANCE instance, HINSTANCE prev_instance, char* commandline, int num_cmd_show)
{
return 0;
}

View File

@ -0,0 +1 @@
using HINSTANCE = void*;