mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-16 11:16:42 -04:00
compile and run in windows (improvements needed)
This commit is contained in:
parent
f55f92a88b
commit
f70b29abab
83 changed files with 415 additions and 3747 deletions
|
@ -24,10 +24,10 @@
|
|||
enum PathNameNullEnum {PathNull};
|
||||
|
||||
#define PathNameCompare(op) bool operator op (const Pathname &other) const \
|
||||
{if (IsNull() || other.IsNull()) return false;else return stricmp(_fullpath,other._fullpath) op 0;}\
|
||||
{if (IsNull() || other.IsNull()) return false;else return istrcmp(_fullpath,other._fullpath) op 0;}\
|
||||
bool operator op (const char *other) const \
|
||||
{ASSERT(other[0]!=0);\
|
||||
if (IsNull() || other==NULL) return false;else return stricmp(_fullpath,other) op 0;}
|
||||
if (IsNull() || other==NULL) return false;else return istrcmp(_fullpath,other) op 0;}
|
||||
|
||||
#ifndef _UNICODE
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue