1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2024-12-02 19:17:17 +01:00
ExplorerPatcher/ExplorerPatcher/fmemopen.h
2021-10-02 04:02:07 +03:00

8 lines
192 B
C

#ifndef _H_FMEMOPEN_H_
#define _H_FMEMOPEN_H_
#include <stdio.h>
#include <io.h>
#include <fcntl.h>
#include <windows.h>
FILE* fmemopen(void* buf, size_t size, const char* mode);
#endif