Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 285 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 285 Bytes

types

win32 types for any platform without the nonsense, and the bulk of overinclusion. This is compatible with C and C++.

code example:

#include <stdio.h>
#include "types.h"
int main() {
	LPCSTR p = "hi";
	printf("%s", p);
}

Compiles without warnings on MSVC C and C++.