mirror of https://github.com/flysand7/ciabatta.git
10 lines
105 B
C
10 lines
105 B
C
|
|
||
|
#pragma once
|
||
|
|
||
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#include <Windows.h>
|
||
|
|
||
|
struct _os_heap {
|
||
|
HANDLE handle;
|
||
|
};
|