2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-16 01:25:51 +00:00
metaforce/hecl/include/hecl/winsupport.hpp
2018-12-07 19:18:42 -10:00

13 lines
277 B
C++

#pragma once
#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);
int asprintf(char** buf, const char* format, ...);