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:
Charlie Fenton 2017-10-02 18:02:00 -07:00
parent 2dbdc578b4
commit 6ae2b433c3
1 changed files with 19 additions and 0 deletions

19
api/MultiGPUMig.defs Normal file
View File

@ -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
);