Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / cocoaint / src / foundation / NSPortMessage.inc
Size: Mime:
{ Parsed from Foundation.framework NSPortMessage.h }


{$ifdef TYPES}
type
  NSPortMessagePtr = ^NSPortMessage;
{$endif}

{$ifdef CLASSES}

type
  NSPortMessage = objcclass external (NSObject)
  private
    localPort: NSPort;
    remotePort: NSPort;
    components: NSMutableArray;
    msgid: cuint32;
    reserved2: pointer;
    reserved: pointer;
  public
    function initWithSendPort_receivePort_components (sendPort: NSPort; replyPort: NSPort; components_: NSArray): instancetype; message 'initWithSendPort:receivePort:components:'; { NS_DESIGNATED_INITIALIZER }
    function components_: NSArray; message 'components';
    function receivePort: NSPort; message 'receivePort';
    function sendPort: NSPort; message 'sendPort';
    function sendBeforeDate (date: NSDate): ObjCBOOL; message 'sendBeforeDate:';
    procedure setMsgid(newValue: cuint32); message 'setMsgid:';
    function msgid_: cuint32; message 'msgid';
  end;
{$endif}