mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 16:08:23 +08:00
Unix compatibility for UD 0.1.0
- a few naming changes and then the release, yay
This commit is contained in:
parent
7bae8e040c
commit
80b85cbf19
@ -17,11 +17,10 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
#include <direct.h>
|
#include <direct.h>
|
||||||
#include <sys/stat.h>
|
|
||||||
|
|
||||||
bool isExistOnFs(const UString & path) {
|
bool isExistOnFs(const UString & path) {
|
||||||
struct _stat buf;
|
struct _stat buf;
|
||||||
return (_stat((const char*)path.toLocal8Bit(), &buf) == 0);
|
return (_stat((const char*)path.toLocal8Bit(), &buf) == 0);
|
||||||
@ -35,6 +34,19 @@ bool changeDirectory(const UString & dir) {
|
|||||||
return (_chdir((const char*)dir.toLocal8Bit()) == 0);
|
return (_chdir((const char*)dir.toLocal8Bit()) == 0);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
#include <unistd.h>
|
||||||
|
bool isExistOnFs(const UString & path) {
|
||||||
|
struct stat buf;
|
||||||
|
return (stat((const char*)path.toLocal8Bit(), &buf) == 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool makeDirectory(const UString & dir) {
|
||||||
|
return (mkdir((const char*)dir.toLocal8Bit(), ACCESSPERMS) == 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool changeDirectory(const UString & dir) {
|
||||||
|
return (chdir((const char*)dir.toLocal8Bit()) == 0);
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
USTATUS UEFIDumper::dump(const UByteArray & buffer, const UString & inPath, const UString & guid)
|
USTATUS UEFIDumper::dump(const UByteArray & buffer, const UString & inPath, const UString & guid)
|
||||||
|
@ -36,6 +36,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||||||
#include "types.h"
|
#include "types.h"
|
||||||
#include "treeitem.h"
|
#include "treeitem.h"
|
||||||
|
|
||||||
|
class TreeModel;
|
||||||
|
|
||||||
class UModelIndex
|
class UModelIndex
|
||||||
{
|
{
|
||||||
friend class TreeModel;
|
friend class TreeModel;
|
||||||
|
Loading…
Reference in New Issue
Block a user