/* File: DeviceControlPriv.k.h Contains: xxx put contents here xxx Version: xxx put version here xxx DRI: xxx put dri here xxx Copyright: © 1999-2000 by Apple Computer, Inc., all rights reserved. Warning: *** APPLE INTERNAL USE ONLY *** This file contains unreleased SPI's BuildInfo: Built by: wgulland On: Thu Sep 21 14:47:24 2000 With Interfacer: 3.0d20e4 (Mac OS X for PowerPC) From: DeviceControlPriv.i Revision: 3 Dated: 6/15/99 Last change by: KW Last comment: fix screwup Bugs: Report bugs to Radar component "System Interfaces", "Latest" List the version information (from above) in the Problem Description. */ #ifndef __DEVICECONTROLPRIV_K__ #define __DEVICECONTROLPRIV_K__ #include /* Example usage: #define DEVICECONTROL_BASENAME() Fred #define DEVICECONTROL_GLOBALS() FredGlobalsHandle #include To specify that your component implementation does not use globals, do not #define DEVICECONTROL_GLOBALS */ #ifdef DEVICECONTROL_BASENAME #ifndef DEVICECONTROL_GLOBALS #define DEVICECONTROL_GLOBALS() #define ADD_DEVICECONTROL_COMMA #else #define ADD_DEVICECONTROL_COMMA , #endif #define DEVICECONTROL_GLUE(a,b) a##b #define DEVICECONTROL_STRCAT(a,b) DEVICECONTROL_GLUE(a,b) #define ADD_DEVICECONTROL_BASENAME(name) DEVICECONTROL_STRCAT(DEVICECONTROL_BASENAME(),name) EXTERN_API( ComponentResult ) ADD_DEVICECONTROL_BASENAME(EnableAVCTransactions) (DEVICECONTROL_GLOBALS()); EXTERN_API( ComponentResult ) ADD_DEVICECONTROL_BASENAME(DisableAVCTransactions) (DEVICECONTROL_GLOBALS()); EXTERN_API( ComponentResult ) ADD_DEVICECONTROL_BASENAME(SetDeviceConnectionID) (DEVICECONTROL_GLOBALS() ADD_DEVICECONTROL_COMMA DeviceConnectionID connectionID); EXTERN_API( ComponentResult ) ADD_DEVICECONTROL_BASENAME(GetDeviceConnectionID) (DEVICECONTROL_GLOBALS() ADD_DEVICECONTROL_COMMA DeviceConnectionID * connectionID); /* MixedMode ProcInfo constants for component calls */ enum { uppDeviceControlEnableAVCTransactionsProcInfo = 0x000000F0, uppDeviceControlDisableAVCTransactionsProcInfo = 0x000000F0, uppDeviceControlSetDeviceConnectionIDProcInfo = 0x000003F0, uppDeviceControlGetDeviceConnectionIDProcInfo = 0x000003F0 }; #endif /* DEVICECONTROL_BASENAME */ #endif /* __DEVICECONTROLPRIV_K__ */