I think I fixed the memory leaks in the converter
Updated makefile for Unix I changed how the converter works, now you simply put the .exe in the folder you want to convert and run it, it'll output all the files in ./world git-svn-id: http://mc-server.googlecode.com/svn/trunk@132 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
24
converter/source/cMakeDir.cpp
Normal file
24
converter/source/cMakeDir.cpp
Normal file
@@ -0,0 +1,24 @@
|
||||
#include "cMakeDir.h"
|
||||
|
||||
#ifndef _WIN32
|
||||
//#include <cstring> // If something is missing, uncomment some of these!
|
||||
//#include <cstdlib>
|
||||
//#include <stdio.h>
|
||||
#include <sys/stat.h> // for mkdir
|
||||
//#include <sys/types.h>
|
||||
#else
|
||||
#include <Windows.h>
|
||||
#endif
|
||||
|
||||
void cMakeDir::MakeDir( const char* a_Directory )
|
||||
{
|
||||
#ifdef _WIN32
|
||||
SECURITY_ATTRIBUTES Attrib;
|
||||
Attrib.nLength = sizeof(SECURITY_ATTRIBUTES);
|
||||
Attrib.lpSecurityDescriptor = NULL;
|
||||
Attrib.bInheritHandle = false;
|
||||
::CreateDirectory(a_Directory, &Attrib);
|
||||
#else
|
||||
mkdir(a_Directory, S_IRWXU | S_IRWXG | S_IRWXO);
|
||||
#endif
|
||||
}
|
||||
Reference in New Issue
Block a user