mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
define type more traditional GS way or gcc didn't like it
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@38988 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4f1e798805
commit
bb36c3f5a5
1 changed files with 3 additions and 2 deletions
|
@ -198,12 +198,13 @@ typedef uint32_t OSType;
|
|||
#define OSTYPE_DECLARED
|
||||
#endif
|
||||
|
||||
typedef enum : NSUInteger
|
||||
enum _NSDirectoryEnumerationOptions
|
||||
{
|
||||
NSDirectoryEnumerationSkipsSubdirectoryDescendants = 1L << 0,
|
||||
NSDirectoryEnumerationSkipsPackageDescendants = 1L << 1,
|
||||
NSDirectoryEnumerationSkipsHiddenFiles = 1L << 2
|
||||
} NSDirectoryEnumerationOptions;
|
||||
};
|
||||
typedef NSUInteger NSDirectoryEnumerationOptions;
|
||||
|
||||
@interface NSFileManager : NSObject
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue