diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /common/quicktime_win32/Timer.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'common/quicktime_win32/Timer.h')
| -rw-r--r-- | common/quicktime_win32/Timer.h | 301 |
1 files changed, 301 insertions, 0 deletions
diff --git a/common/quicktime_win32/Timer.h b/common/quicktime_win32/Timer.h new file mode 100644 index 0000000..b6cc4b1 --- /dev/null +++ b/common/quicktime_win32/Timer.h @@ -0,0 +1,301 @@ +/* + File: Timer.h + + Contains: Time Manager interfaces. + + Version: QuickTime 7.3 + + Copyright: (c) 2007 (c) 1985-2001 by Apple Computer, Inc., all rights reserved + + Bugs?: For bug reports, consult the following page on + the World Wide Web: + + http://developer.apple.com/bugreporter/ + +*/ +#ifndef __TIMER__ +#define __TIMER__ + +#ifndef __CONDITIONALMACROS__ +#include <ConditionalMacros.h> +#endif + +#ifndef __MACTYPES__ +#include <MacTypes.h> +#endif + +#ifndef __OSUTILS__ +#include <OSUtils.h> +#endif + + + + +#if PRAGMA_ONCE +#pragma once +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +#if PRAGMA_IMPORT +#pragma import on +#endif + +#if PRAGMA_STRUCT_ALIGN + #pragma options align=mac68k +#elif PRAGMA_STRUCT_PACKPUSH + #pragma pack(push, 2) +#elif PRAGMA_STRUCT_PACK + #pragma pack(2) +#endif + +enum { + /* high bit of qType is set if task is active */ + kTMTaskActive = (1L << 15) +}; + +typedef struct TMTask TMTask; +typedef TMTask * TMTaskPtr; +typedef CALLBACK_API_REGISTER68K( void , TimerProcPtr, (TMTaskPtr tmTaskPtr) ); +typedef REGISTER_UPP_TYPE(TimerProcPtr) TimerUPP; +struct TMTask { + QElemPtr qLink; + short qType; + TimerUPP tmAddr; + long tmCount; + long tmWakeUp; + long tmReserved; +}; + +/* + * InsTime() + * + * Availability: + * Non-Carbon CFM: in InterfaceLib 7.1 and later + * CarbonLib: in CarbonLib 1.0 and later + * Mac OS X: in version 10.0 and later + */ +#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM +#pragma parameter InsTime(__A0) +#endif +EXTERN_API( void ) +InsTime(QElemPtr tmTaskPtr) ONEWORDINLINE(0xA058); + + +/* + * InsXTime() + * + * Availability: + * Non-Carbon CFM: in InterfaceLib 7.1 and later + * CarbonLib: in CarbonLib 1.0 and later + * Mac OS X: in version 10.0 and later + */ +#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM +#pragma parameter InsXTime(__A0) +#endif +EXTERN_API( void ) +InsXTime(QElemPtr tmTaskPtr) ONEWORDINLINE(0xA458); + + +/* + * PrimeTime() + * + * Availability: + * Non-Carbon CFM: in InterfaceLib 7.1 and later + * CarbonLib: in CarbonLib 1.0 and later + * Mac OS X: in version 10.0 and later + */ +#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM +#pragma parameter PrimeTime(__A0, __D0) +#endif +EXTERN_API( void ) +PrimeTime( + QElemPtr tmTaskPtr, + long count) ONEWORDINLINE(0xA05A); + + +/* + * RmvTime() + * + * Availability: + * Non-Carbon CFM: in InterfaceLib 7.1 and later + * CarbonLib: in CarbonLib 1.0 and later + * Mac OS X: in version 10.0 and later + */ +#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM +#pragma parameter RmvTime(__A0) +#endif +EXTERN_API( void ) +RmvTime(QElemPtr tmTaskPtr) ONEWORDINLINE(0xA059); + + + +/* InstallTimeTask, InstallXTimeTask, PrimeTimeTask and RemoveTimeTask work */ +/* just like InsTime, InsXTime, PrimeTime, and RmvTime except that they */ +/* return an OSErr result. */ +/* + * InstallTimeTask() + * + * Availability: + * Non-Carbon CFM: in InterfaceLib 9.1 and later + * CarbonLib: in CarbonLib 1.0.2 and later + * Mac OS X: in version 10.0 and later + */ +#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM +#pragma parameter __D0 InstallTimeTask(__A0) +#endif +EXTERN_API( OSErr ) +InstallTimeTask(QElemPtr tmTaskPtr) ONEWORDINLINE(0xA058); + + +/* + * InstallXTimeTask() + * + * Availability: + * Non-Carbon CFM: in InterfaceLib 9.1 and later + * CarbonLib: in CarbonLib 1.0.2 and later + * Mac OS X: in version 10.0 and later + */ +#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM +#pragma parameter __D0 InstallXTimeTask(__A0) +#endif +EXTERN_API( OSErr ) +InstallXTimeTask(QElemPtr tmTaskPtr) ONEWORDINLINE(0xA458); + + +/* + * PrimeTimeTask() + * + * Availability: + * Non-Carbon CFM: in InterfaceLib 9.1 and later + * CarbonLib: in CarbonLib 1.0.2 and later + * Mac OS X: in version 10.0 and later + */ +#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM +#pragma parameter __D0 PrimeTimeTask(__A0, __D0) +#endif +EXTERN_API( OSErr ) +PrimeTimeTask( + QElemPtr tmTaskPtr, + long count) ONEWORDINLINE(0xA05A); + + +/* + * RemoveTimeTask() + * + * Availability: + * Non-Carbon CFM: in InterfaceLib 9.1 and later + * CarbonLib: in CarbonLib 1.0.2 and later + * Mac OS X: in version 10.0 and later + */ +#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM +#pragma parameter __D0 RemoveTimeTask(__A0) +#endif +EXTERN_API( OSErr ) +RemoveTimeTask(QElemPtr tmTaskPtr) ONEWORDINLINE(0xA059); + + + +/* + * Microseconds() + * + * Availability: + * Non-Carbon CFM: in InterfaceLib 7.1 and later + * CarbonLib: in CarbonLib 1.0 and later + * Mac OS X: in version 10.0 and later + */ +EXTERN_API( void ) +Microseconds(UnsignedWide * microTickCount) FOURWORDINLINE(0xA193, 0x225F, 0x22C8, 0x2280); + + +/* + * NewTimerUPP() + * + * Availability: + * Non-Carbon CFM: available as macro/inline + * CarbonLib: in CarbonLib 1.0 and later + * Mac OS X: in version 10.0 and later + */ +EXTERN_API_C( TimerUPP ) +NewTimerUPP(TimerProcPtr userRoutine); +#if !OPAQUE_UPP_TYPES + enum { uppTimerProcInfo = 0x0000B802 }; /* register no_return_value Func(4_bytes:A1) */ + #ifdef __cplusplus + inline DEFINE_API_C(TimerUPP) NewTimerUPP(TimerProcPtr userRoutine) { return (TimerUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppTimerProcInfo, GetCurrentArchitecture()); } + #else + #define NewTimerUPP(userRoutine) (TimerUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppTimerProcInfo, GetCurrentArchitecture()) + #endif +#endif + +/* + * DisposeTimerUPP() + * + * Availability: + * Non-Carbon CFM: available as macro/inline + * CarbonLib: in CarbonLib 1.0 and later + * Mac OS X: in version 10.0 and later + */ +EXTERN_API_C( void ) +DisposeTimerUPP(TimerUPP userUPP); +#if !OPAQUE_UPP_TYPES + #ifdef __cplusplus + inline DEFINE_API_C(void) DisposeTimerUPP(TimerUPP userUPP) { DisposeRoutineDescriptor((UniversalProcPtr)userUPP); } + #else + #define DisposeTimerUPP(userUPP) DisposeRoutineDescriptor(userUPP) + #endif +#endif + +/* + * InvokeTimerUPP() + * + * Availability: + * Non-Carbon CFM: available as macro/inline + * CarbonLib: in CarbonLib 1.0 and later + * Mac OS X: in version 10.0 and later + */ +#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM +#pragma parameter InvokeTimerUPP(__A1, __A0) +#endif +EXTERN_API_C( void ) +InvokeTimerUPP( + TMTaskPtr tmTaskPtr, + TimerUPP userUPP) ONEWORDINLINE(0x4E90); +#if !OPAQUE_UPP_TYPES && (!TARGET_OS_MAC || !TARGET_CPU_68K || TARGET_RT_MAC_CFM) + #ifdef __cplusplus + inline DEFINE_API_C(void) InvokeTimerUPP(TMTaskPtr tmTaskPtr, TimerUPP userUPP) { CALL_ONE_PARAMETER_UPP(userUPP, uppTimerProcInfo, tmTaskPtr); } + #else + #define InvokeTimerUPP(tmTaskPtr, userUPP) CALL_ONE_PARAMETER_UPP((userUPP), uppTimerProcInfo, (tmTaskPtr)) + #endif +#endif + +#if CALL_NOT_IN_CARBON || OLDROUTINENAMES + /* support for pre-Carbon UPP routines: New...Proc and Call...Proc */ + #define NewTimerProc(userRoutine) NewTimerUPP(userRoutine) + #define CallTimerProc(userRoutine, tmTaskPtr) InvokeTimerUPP(tmTaskPtr, userRoutine) +#endif /* CALL_NOT_IN_CARBON */ + + + + +#if PRAGMA_STRUCT_ALIGN + #pragma options align=reset +#elif PRAGMA_STRUCT_PACKPUSH + #pragma pack(pop) +#elif PRAGMA_STRUCT_PACK + #pragma pack() +#endif + +#ifdef PRAGMA_IMPORT_OFF +#pragma import off +#elif PRAGMA_IMPORT +#pragma import reset +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* __TIMER__ */ + |