mirror of
https://github.com/encounter/aurora.git
synced 2025-08-11 14:49:07 +00:00
13 lines
227 B
C++
13 lines
227 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);
|
|
|