bcc1450ba9
The user input thread now properly stops when the server restarts or stops git-svn-id: http://mc-server.googlecode.com/svn/trunk@13 0a769ca7-a7f5-676a-18bf-c427514a06d6
24 lines
591 B
C++
24 lines
591 B
C++
#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
|
|
} |