Add winsupport from hecl

This commit is contained in:
Jack Andersen
2016-06-30 09:40:35 -10:00
committed by Phillip Stephens
parent 061753f92f
commit c75c6c74c5
2 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef _HECL_WINSUPPORT_H_
#define _HECL_WINSUPPORT_H_
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN 1
#endif
#ifndef NOMINMAX
#define NOMINMAX 1
#endif
#include "windows.h"
void* memmem(const void *haystack, size_t hlen, const void *needle, size_t nlen);
#endif // _HECL_WINSUPPORT_H_