Skip to content

Commit

Permalink
Mac: Changes to Xcode project to support screensaver changes for Mac …
Browse files Browse the repository at this point in the history
…OS 10.13. Added file needed for Mach-O communication.
  • Loading branch information
Charlie Fenton committed Oct 3, 2017
1 parent 2dbdc57 commit 6ae2b43
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions api/MultiGPUMig.defs
Original file line number Diff line number Diff line change
@@ -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
);

0 comments on commit 6ae2b43

Please sign in to comment.