blob: b048b41b7814fde0727764ae794ede8e0dfd4e61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//========= Copyright Valve Corporation ============//
#pragma once
#include <stdint.h>
#include <string>
#if !defined(_WIN32)
#include <sys/types.h>
#include <sys/stat.h>
#endif
extern bool BCreateDirectoryRecursive( const char *pchPath );
extern bool BCreateDirectory( const char *pchPath );
|