Changeset - r22887:895b475b0c41
[Not reviewed]
master
0 2 0
Niels Martin Hansen - 6 years ago 2018-04-29 18:07:22
nielsm@indvikleren.dk
Codechange: Make FioCreateDirectory public
2 files changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/fileio.cpp
Show inline comments
 
@@ -532,7 +532,7 @@ FILE *FioFOpenFile(const char *filename,
 
 * Create a directory with the given name
 
 * @param name the new name of the directory
 
 */
 
static void FioCreateDirectory(const char *name)
 
void FioCreateDirectory(const char *name)
 
{
 
	/* Ignore directory creation errors; they'll surface later on, and most
 
	 * of the time they are 'directory already exists' errors anyhow. */
src/fileio_func.h
Show inline comments
 
@@ -55,6 +55,7 @@ char *FioGetFullPath(char *buf, const ch
 
char *FioFindFullPath(char *buf, const char *last, Subdirectory subdir, const char *filename);
 
char *FioAppendDirectory(char *buf, const char *last, Searchpath sp, Subdirectory subdir);
 
char *FioGetDirectory(char *buf, const char *last, Subdirectory subdir);
 
void FioCreateDirectory(const char *name);
 

	
 
const char *FiosGetScreenshotDir();
 

	
0 comments (0 inline, 0 general)