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#include <mmsystem.h>
11
12bool winMapLastError();