CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
win.h
1#pragma once
2
3// For use when the Windows API is needed
4
5#include <cx/cx.h>
6
7#define WIN32_LEAN_AND_MEAN
8#include <Windows.h>
9#include <WinSock2.h>
10
11#include <mmsystem.h>
12
13CX_C_BEGIN
14
15bool winMapLastError();
16
17CX_C_END