mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-23 11:17:03 -04:00
v1.1.4 (#150)
* closes #49 * closes #60 * closes #64 * should address #59 * set default doe ISOs with bot bootmgr and isolinux to syslinux * other improvements
This commit is contained in:
parent
a9c47a4922
commit
7ee5b35551
11 changed files with 233 additions and 149 deletions
|
@ -24,6 +24,7 @@
|
|||
#include <commdlg.h>
|
||||
#include <shellapi.h>
|
||||
#include <setupapi.h>
|
||||
#include <direct.h>
|
||||
|
||||
#pragma once
|
||||
|
||||
|
@ -618,6 +619,15 @@ static __inline char* getenvU(const char* varname)
|
|||
return ret;
|
||||
}
|
||||
|
||||
static __inline int _mkdirU(const char* dirname)
|
||||
{
|
||||
wconvert(dirname);
|
||||
int ret;
|
||||
ret = _wmkdir(wdirname);
|
||||
wfree(dirname);
|
||||
return ret;
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue