mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
Changes for 64bit clean printf format strings.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36810 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a728a03c0c
commit
b2d5fd280c
32 changed files with 223 additions and 168 deletions
|
@ -65,12 +65,20 @@ typedef enum
|
|||
*/
|
||||
NSString* GSNetServiceDotTerminatedNSStringFromString(const char* string);
|
||||
|
||||
@class GSAvahiRunLoopContext, NSTimer, NSLock, NSRecursiveLock, NSMutableDictionary, NSMapTable;
|
||||
@class GSAvahiRunLoopContext;
|
||||
@class NSTimer;
|
||||
@class NSRecursiveLock;
|
||||
@class NSMutableDictionary;
|
||||
@class NSMapTable;
|
||||
|
||||
/**
|
||||
* NSNetService using the avahi-client API.
|
||||
*/
|
||||
#ifdef __clang__ /* FIXME ... this is not clang specific! */
|
||||
@interface GSAvahiNetService : NSNetService <NSNetServiceDelegate>
|
||||
#else
|
||||
@interface GSAvahiNetService : NSNetService
|
||||
#endif
|
||||
{
|
||||
// GSAvahiClient behaviour ivars:
|
||||
// From superclass: id _delegate;
|
||||
|
@ -79,7 +87,7 @@ NSString* GSNetServiceDotTerminatedNSStringFromString(const char* string);
|
|||
NSRecursiveLock *_lock;
|
||||
// Ivars for this class:
|
||||
NSMutableDictionary *_info;
|
||||
NSLock *_infoLock;
|
||||
NSRecursiveLock *_infoLock;
|
||||
NSUInteger _infoSeq;
|
||||
GSNetServiceState _serviceState;
|
||||
int _ifIndex;
|
||||
|
@ -112,7 +120,12 @@ NSString* GSNetServiceDotTerminatedNSStringFromString(const char* string);
|
|||
/**
|
||||
* NSNetServiceBrowser using the avahi-client API.
|
||||
*/
|
||||
#ifdef __clang__ /* FIXME ... this is not clang specific! */
|
||||
@interface GSAvahiNetServiceBrowser
|
||||
: NSNetServiceBrowser <NSNetServiceBrowserDelegate>
|
||||
#else
|
||||
@interface GSAvahiNetServiceBrowser: NSNetServiceBrowser
|
||||
#endif
|
||||
{
|
||||
// GSAvahiClient behaviour ivars:
|
||||
// from superclass: id _delegate;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue