mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-09 15:30:41 +00:00
Fixes for dedicated build on linux.
Thx @Bloodknigh for Signal fix.
This commit is contained in:
parent
ef4e7ec975
commit
6450294855
8 changed files with 22 additions and 19 deletions
|
|
@ -251,7 +251,7 @@ Path PosixFile::getName() const
|
|||
return _path;
|
||||
}
|
||||
|
||||
FileNode::Status PosixFile::getStatus() const
|
||||
FileNode::NodeStatus PosixFile::getStatus() const
|
||||
{
|
||||
return _status;
|
||||
}
|
||||
|
|
@ -536,7 +536,7 @@ bool PosixDirectory::getAttributes(Attributes* attr)
|
|||
return true;
|
||||
}
|
||||
|
||||
FileNode::Status PosixDirectory::getStatus() const
|
||||
FileNode::NodeStatus PosixDirectory::getStatus() const
|
||||
{
|
||||
return _status;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ class PosixFile: public File
|
|||
Path _path;
|
||||
String _name;
|
||||
FILE* _handle;
|
||||
Status _status;
|
||||
NodeStatus _status;
|
||||
|
||||
PosixFile(const Path& path,String name);
|
||||
bool _updateInfo();
|
||||
|
|
@ -78,7 +78,7 @@ public:
|
|||
~PosixFile();
|
||||
|
||||
Path getName() const;
|
||||
Status getStatus() const;
|
||||
NodeStatus getStatus() const;
|
||||
bool getAttributes(Attributes*);
|
||||
|
||||
U32 getPosition();
|
||||
|
|
@ -103,7 +103,7 @@ class PosixDirectory: public Directory
|
|||
Path _path;
|
||||
String _name;
|
||||
DIR* _handle;
|
||||
Status _status;
|
||||
NodeStatus _status;
|
||||
|
||||
PosixDirectory(const Path& path,String name);
|
||||
void _updateStatus();
|
||||
|
|
@ -112,7 +112,7 @@ public:
|
|||
~PosixDirectory();
|
||||
|
||||
Path getName() const;
|
||||
Status getStatus() const;
|
||||
NodeStatus getStatus() const;
|
||||
bool getAttributes(Attributes*);
|
||||
|
||||
bool open();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue