summaryrefslogtreecommitdiffstats
path: root/source/FileDefine.h
blob: 826d6dd75ad210180fe6ad79b3223591e1b56d9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

// So we don't have to include fstream :P
#ifdef _WIN32
#ifndef _FILE_DEFINED
struct _iobuf {
	char *_ptr;
	int   _cnt;
	char *_base;
	int   _flag;
	int   _file;
	int   _charbuf;
	int   _bufsiz;
	char *_tmpfname;
};
typedef struct _iobuf FILE;
#define _FILE_DEFINED
#endif
#else
#include <stdio.h>
#endif