mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-28 11:22:59 -04:00
Co-authored-by: lvsti <lvsti@users.noreply.github.com> Co-authored-by: Sebastian Beckmann <beckmann.sebastian@outlook.de> Co-authored-by: Stefan Huber <sh@signalwerk.ch> Co-authored-by: Ryohei Ikegami <iofg2100@gmail.com> Co-authored-by: Colin Dean <colin.dean@target.com> Co-authored-by: Wolfgang Ladermann <extern.ladermann_wolfgang@allianz.de> Co-authored-by: Simon Eves <simon.eves@omnisci.com> Co-authored-by: Colin Nelson <colnnelson@google.com> Co-authored-by: Yoshimasa Niwa <niw@niw.at> Co-authored-by: Michael Karliner <mike@modern-industry.com> Co-authored-by: Jason Grout <jgrout6@bloomberg.net> Co-authored-by: Alfredo Inostroza <jadenguy@gmail.com> Co-authored-by: Daniel Kennett <daniel@cascable.se> Co-authored-by: Gary Ewan Park <gep13@gep13.co.uk> Co-authored-by: José Carlos Cieni Júnior <cienijr@outlook.com>
18 lines
440 B
C
18 lines
440 B
C
//
|
|
// MachProtocol.m
|
|
// obs-mac-virtualcam
|
|
//
|
|
// Created by John Boiles on 5/5/20.
|
|
//
|
|
|
|
#define MACH_SERVICE_NAME "com.obsproject.obs-mac-virtualcam.server"
|
|
|
|
typedef enum {
|
|
//! Initial connect message sent from the client to the server to initate a connection
|
|
MachMsgIdConnect = 1,
|
|
//! Message containing data for a frame
|
|
MachMsgIdFrame = 2,
|
|
//! Indicates the server is going to stop sending frames
|
|
MachMsgIdStop = 3,
|
|
} MachMsgId;
|