mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
Updates for 10.5 API changes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27962 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
845a701069
commit
24d43481a8
138 changed files with 2094 additions and 1536 deletions
|
@ -91,7 +91,7 @@ extern "C" {
|
|||
/**
|
||||
* NSMachPort compatibility method.
|
||||
*/
|
||||
+ (NSPort*) portWithMachPort: (int)machPort;
|
||||
+ (NSPort*) portWithMachPort: (NSInteger)machPort;
|
||||
|
||||
/**
|
||||
* Returns the object that received messages will be passed off to.
|
||||
|
@ -112,12 +112,12 @@ extern "C" {
|
|||
/**
|
||||
* NSMachPort compatibility method.
|
||||
*/
|
||||
- (id) initWithMachPort: (int)machPort;
|
||||
- (id) initWithMachPort: (NSInteger)machPort;
|
||||
|
||||
/**
|
||||
* NSMachPort compatibility.
|
||||
*/
|
||||
- (int) machPort;
|
||||
- (NSInteger) machPort;
|
||||
|
||||
/**
|
||||
* Mark port as invalid, deregister with listeners and cease further network
|
||||
|
@ -151,16 +151,16 @@ extern "C" {
|
|||
* Returns amount of space used for header info at beginning of messages.
|
||||
* Subclasses should override (this implementation returns 0).
|
||||
*/
|
||||
- (unsigned) reservedSpaceLength;
|
||||
- (NSUInteger) reservedSpaceLength;
|
||||
|
||||
/**
|
||||
* Internal method for sending message, for use by subclasses.
|
||||
*/
|
||||
- (BOOL) sendBeforeDate: (NSDate*)when
|
||||
msgid: (int)msgid
|
||||
msgid: (NSInteger)msgid
|
||||
components: (NSMutableArray*)components
|
||||
from: (NSPort*)receivingPort
|
||||
reserved: (unsigned)length;
|
||||
reserved: (NSUInteger)length;
|
||||
|
||||
/**
|
||||
* Internal method for sending message, for use by subclasses.
|
||||
|
@ -168,7 +168,7 @@ extern "C" {
|
|||
- (BOOL) sendBeforeDate: (NSDate*)when
|
||||
components: (NSMutableArray*)components
|
||||
from: (NSPort*)receivingPort
|
||||
reserved: (unsigned)length;
|
||||
reserved: (NSUInteger)length;
|
||||
#endif
|
||||
@end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue