ciabatta/src/win/win.h

14 lines
152 B
C
Raw Normal View History

2022-06-03 09:31:16 +00:00
#pragma once
2022-06-08 03:31:06 +00:00
#include <_os.h>
2022-06-03 09:31:16 +00:00
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
struct _os_heap {
HANDLE handle;
};
2022-06-08 04:24:27 +00:00
2022-06-14 22:46:14 +00:00
void _os_timing_init(void);