mirror of
https://github.com/valinet/ExplorerPatcher.git
synced 2024-12-02 19:17:17 +01:00
8 lines
192 B
C
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 |