mirror of
https://github.com/Ed94/gencpp.git
synced 2025-06-15 11:11:46 -07:00
Got raylib bootstrapped to compile
Still need to setup a refactor script among other things before using.
This commit is contained in:
@ -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
|
||||
|
8
project/auxillary/vis_ast/code/platform/win32/launch.cpp
Normal file
8
project/auxillary/vis_ast/code/platform/win32/launch.cpp
Normal 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;
|
||||
}
|
1
project/auxillary/vis_ast/code/platform/win32/types.hpp
Normal file
1
project/auxillary/vis_ast/code/platform/win32/types.hpp
Normal file
@ -0,0 +1 @@
|
||||
using HINSTANCE = void*;
|
Reference in New Issue
Block a user