mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 22:54:34 +00:00
Rename Status enum for avoid conficts on Linux.
This commit is contained in:
parent
938e28b6f3
commit
4a17d6ceb0
10 changed files with 43 additions and 43 deletions
|
|
@ -65,7 +65,7 @@ public:
|
|||
~Win32File();
|
||||
|
||||
Path getName() const;
|
||||
Status getStatus() const;
|
||||
NodeStatus getStatus() const;
|
||||
bool getAttributes(Attributes*);
|
||||
U64 getSize();
|
||||
|
||||
|
|
@ -86,7 +86,7 @@ private:
|
|||
Path mPath;
|
||||
String mName;
|
||||
void *mHandle;
|
||||
Status mStatus;
|
||||
NodeStatus mStatus;
|
||||
|
||||
Win32File(const Path &path, String name);
|
||||
|
||||
|
|
@ -103,7 +103,7 @@ public:
|
|||
~Win32Directory();
|
||||
|
||||
Path getName() const;
|
||||
Status getStatus() const;
|
||||
NodeStatus getStatus() const;
|
||||
bool getAttributes(Attributes*);
|
||||
|
||||
bool open();
|
||||
|
|
@ -118,7 +118,7 @@ private:
|
|||
Path mPath;
|
||||
String mName;
|
||||
void *mHandle;
|
||||
Status mStatus;
|
||||
NodeStatus mStatus;
|
||||
|
||||
Win32Directory(const Path &path,String name);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue