![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/GNUstep/Local/Library/Headers/objc/ |
Upload File : |
#if defined(__clang__) #pragma clang system_header #endif #ifndef _OBJC_MESSAGE_H_ #define _OBJC_MESSAGE_H_ #if defined(__x86_64) || defined(__i386) || defined(__arm__) || \ defined(__mips_n64) || defined(__mips_n32) || defined(__ARM_ARCH_ISA_A64) /** * Standard message sending function. This function must be cast to the * correct types for the function before use. The first argument is the * receiver and the second the selector. * * Note that this function is not available on all architectures. For a more * portable solution to sending arbitrary messages, consider using * objc_msg_lookup_sender() and then calling the returned IMP directly. * * This version of the function is used for all messages that return either an * integer, a pointer, or a small structure value that is returned in * registers. Be aware that calling conventions differ between operating * systems even within the same architecture, so take great care if using this * function for small (two integer) structures. */ id objc_msgSend(id self, SEL _cmd, ...); /** * Standard message sending function. This function must be cast to the * correct types for the function before use. The first argument is the * receiver and the second the selector. * * Note that this function is not available on all architectures. For a more * portable solution to sending arbitrary messages, consider using * objc_msg_lookup_sender() and then calling the returned IMP directly. * * This version of the function is used for all messages that return a * structure that is not returned in registers. Be aware that calling * conventions differ between operating systems even within the same * architecture, so take great care if using this function for small (two * integer) structures. */ #ifdef __cplusplus id objc_msgSend_stret(id self, SEL _cmd, ...); #else void objc_msgSend_stret(id self, SEL _cmd, ...); #endif /** * Standard message sending function. This function must be cast to the * correct types for the function before use. The first argument is the * receiver and the second the selector. * * Note that this function is not available on all architectures. For a more * portable solution to sending arbitrary messages, consider using * objc_msg_lookup_sender() and then calling the returned IMP directly. * * This version of the function is used for all messages that return floating * point values. */ long double objc_msgSend_fpret(id self, SEL _cmd, ...); #endif #endif //_OBJC_MESSAGE_H_