Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

os_win32.cpp 326 B

2 veckor sedan
1234567891011121314151617181920
  1. #ifndef OS_IMPL_WIN32_CPP
  2. #define OS_IMPL_WIN32_CPP
  3. #include "os.h"
  4. #include "Windows.h"
  5. void *osAlloc(size_t capacity) {
  6. return VirtualAlloc(NULL, sizeof(Arena) + capacity, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
  7. }
  8. void osReserve(void *ptr) {
  9. }
  10. void osDecommit(void *ptr) {
  11. }
  12. void osFree(void *ptr) {
  13. }
  14. #endif