mirror of https://github.com/BOINC/boinc.git
Mac: Changes to Xcode project to support screensaver changes for Mac OS 10.13. Added file needed for Mach-O communication.
This commit is contained in:
parent
2dbdc578b4
commit
6ae2b433c3
|
@ -0,0 +1,19 @@
|
|||
#include <mach/mach_types.defs>
|
||||
|
||||
subsystem MGSServer 29000;
|
||||
userprefix _MGC; /* Routine prefixes for user access. */
|
||||
serverprefix _MGS; /* Routine prefixes for internal server access. */
|
||||
|
||||
/* Client -> Server */
|
||||
routine CheckinClient(
|
||||
server_port : mach_port_t;
|
||||
in client_port : mach_port_t;
|
||||
out client_index : int32_t
|
||||
);
|
||||
|
||||
/* Master -> Slave */
|
||||
routine DisplayFrame(
|
||||
server_port : mach_port_t;
|
||||
frame_index : int32_t;
|
||||
iosurface_port : mach_port_t
|
||||
);
|
Loading…
Reference in New Issue