mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-10 16:20:42 +00:00
Dummy implementation of NSHFSFileTypes
This commit is contained in:
parent
3b5016e54f
commit
1fe061b1dc
2 changed files with 19 additions and 4 deletions
|
@ -32,10 +32,14 @@
|
|||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
@class NSString;
|
||||
|
||||
@interface NSHFSFileTypes : NSObject
|
||||
GS_EXPORT NSString *NSFileTypeForHFSTypeCode(NSUInteger hfsFileTypeCode);
|
||||
|
||||
@end
|
||||
GS_EXPORT NSUInteger NSHFSTypeCodeFromFileType(NSString *fileTypeString);
|
||||
|
||||
GS_EXPORT NSString *NSHFSTypeOfFile(NSString *fullFilePath);
|
||||
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
|
|
|
@ -24,7 +24,18 @@
|
|||
|
||||
#include <Foundation/NSHFSFileTypes.h>
|
||||
|
||||
@implementation NSHFSFileTypes
|
||||
NSString *NSFileTypeForHFSTypeCode(NSUInteger hfsFileTypeCode)
|
||||
{
|
||||
return @"";
|
||||
}
|
||||
|
||||
@end
|
||||
NSUInteger NSHFSTypeCodeFromFileType(NSString *fileTypeString)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
NSString *NSHFSTypeOfFile(NSString *fullFilePath)
|
||||
{
|
||||
return @"";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue