mirror of
https://github.com/bitgapp/eqMac.git
synced 2024-11-30 03:35:04 +03:00
26 lines
475 B
C
26 lines
475 B
C
//
|
|
// EQM_XPCHelper.h
|
|
// EQMDriver
|
|
//
|
|
//
|
|
|
|
#ifndef EQMDriver__EQM_XPCHelper
|
|
#define EQMDriver__EQM_XPCHelper
|
|
|
|
// System Includes
|
|
#include <MacTypes.h>
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
// On failure, returns one of the kEQMXPC_* error codes, or the error code received from EQMXPCHelper. Returns kEQMXPC_Success otherwise.
|
|
UInt64 StartEQMAppPlayThroughSync(bool inIsForUISoundsDevice);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif /* EQMDriver__EQM_XPCHelper */
|
|
|