1
0
Fork 0

Removed a useless include file.

git-svn-id: http://mc-server.googlecode.com/svn/trunk@725 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com 2012-08-11 11:51:32 +00:00
parent 897733a58e
commit ecf6217ae9
4 changed files with 5 additions and 25 deletions

View File

@ -1,21 +0,0 @@
#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

View File

@ -3,7 +3,6 @@
#include "cBlockEntity.h"
#include "cWindowOwner.h"
#include "FileDefine.h"
#include "cItem.h"
@ -21,6 +20,7 @@ class cServer;
class cFurnaceEntity :
public cBlockEntity,
public cBlockEntityWindowOwner

View File

@ -2,7 +2,10 @@
#pragma once
#include "cWindowOwner.h"
#include "FileDefine.h"
namespace Json
{

View File

@ -1,8 +1,6 @@
#pragma once
#include "FileDefine.h"