Raylib c refactor scripts complete

This commit is contained in:
2023-11-17 19:25:54 -05:00
parent 9bd6dac783
commit 040ec00606
20 changed files with 8704 additions and 8624 deletions

View File

@ -1,3 +1,4 @@
#pragma once
#if INTELLISENSE_DIRECTIVES
#include "vendor/compiler.hpp"
#endif

View File

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

View File

@ -1,4 +1,5 @@
// Platform compiler
#pragma once
#if defined( _MSC_VER )
# define Compiler_MSVC 1

View File

@ -1,4 +1,5 @@
// Platform OS detection
#pragma once
#if defined( _WIN32 ) || defined( _WIN64 )
# ifndef System_Windows

View File

@ -1 +1,3 @@
using HINSTANCE = void*;
#pragma once
using HINSTANCE = void*;