summaryrefslogtreecommitdiff
path: root/common/quicktime_win32/Patches.h
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /common/quicktime_win32/Patches.h
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'common/quicktime_win32/Patches.h')
-rw-r--r--common/quicktime_win32/Patches.h259
1 files changed, 259 insertions, 0 deletions
diff --git a/common/quicktime_win32/Patches.h b/common/quicktime_win32/Patches.h
new file mode 100644
index 0000000..7bb926b
--- /dev/null
+++ b/common/quicktime_win32/Patches.h
@@ -0,0 +1,259 @@
+/*
+ File: Patches.h
+
+ Contains: Patch Manager Interfaces.
+
+ Version: QuickTime 7.3
+
+ Copyright: (c) 2007 (c) 1994-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 __PATCHES__
+#define __PATCHES__
+
+#ifndef __MACTYPES__
+#include <MacTypes.h>
+#endif
+
+
+
+
+#if PRAGMA_ONCE
+#pragma once
+#endif
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#if PRAGMA_IMPORT
+#pragma import on
+#endif
+
+#if CALL_NOT_IN_CARBON
+enum {
+ kOSTrapType = 0,
+ kToolboxTrapType = 1
+};
+
+typedef SignedByte TrapType;
+enum {
+ OSTrap = kOSTrapType, /* old name */
+ ToolTrap = kToolboxTrapType /* old name */
+};
+
+#endif /* CALL_NOT_IN_CARBON */
+
+/*
+ GetTrapAddress and SetTrapAddress are obsolete and should not
+ be used. Always use NGetTrapAddress and NSetTrapAddress instead.
+ The old routines will not be supported for PowerPC apps.
+*/
+#if TARGET_CPU_68K && !TARGET_RT_MAC_CFM
+#if CALL_NOT_IN_CARBON
+/*
+ * GetTrapAddress()
+ *
+ * Availability:
+ * Non-Carbon CFM: not available
+ * CarbonLib: not available
+ * Mac OS X: not available
+ */
+#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM
+#pragma parameter __A0 GetTrapAddress(__D0)
+#endif
+EXTERN_API( UniversalProcPtr )
+GetTrapAddress(UInt16 trapNum) ONEWORDINLINE(0xA146);
+
+
+/*
+ * SetTrapAddress()
+ *
+ * Availability:
+ * Non-Carbon CFM: not available
+ * CarbonLib: not available
+ * Mac OS X: not available
+ */
+#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM
+#pragma parameter SetTrapAddress(__A0, __D0)
+#endif
+EXTERN_API( void )
+SetTrapAddress(
+ UniversalProcPtr trapAddr,
+ UInt16 trapNum) ONEWORDINLINE(0xA047);
+
+
+#endif /* CALL_NOT_IN_CARBON */
+
+#endif /* TARGET_CPU_68K && !TARGET_RT_MAC_CFM */
+
+#if CALL_NOT_IN_CARBON
+/*
+ * NGetTrapAddress()
+ *
+ * Availability:
+ * Non-Carbon CFM: in InterfaceLib 7.1 and later
+ * CarbonLib: not available
+ * Mac OS X: not available
+ */
+EXTERN_API( UniversalProcPtr )
+NGetTrapAddress(
+ UInt16 trapNum,
+ TrapType tTyp);
+
+
+/*
+ * NSetTrapAddress()
+ *
+ * Availability:
+ * Non-Carbon CFM: in InterfaceLib 7.1 and later
+ * CarbonLib: not available
+ * Mac OS X: not available
+ */
+EXTERN_API( void )
+NSetTrapAddress(
+ UniversalProcPtr trapAddr,
+ UInt16 trapNum,
+ TrapType tTyp);
+
+
+#endif /* CALL_NOT_IN_CARBON */
+
+#if CALL_NOT_IN_CARBON
+/*
+ * GetOSTrapAddress()
+ *
+ * Availability:
+ * Non-Carbon CFM: in InterfaceLib 7.1 and later
+ * CarbonLib: not available
+ * Mac OS X: not available
+ */
+#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM
+#pragma parameter __A0 GetOSTrapAddress(__D0)
+#endif
+EXTERN_API( UniversalProcPtr )
+GetOSTrapAddress(UInt16 trapNum) ONEWORDINLINE(0xA346);
+
+
+/*
+ * SetOSTrapAddress()
+ *
+ * Availability:
+ * Non-Carbon CFM: in InterfaceLib 7.1 and later
+ * CarbonLib: not available
+ * Mac OS X: not available
+ */
+#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM
+#pragma parameter SetOSTrapAddress(__A0, __D0)
+#endif
+EXTERN_API( void )
+SetOSTrapAddress(
+ UniversalProcPtr trapAddr,
+ UInt16 trapNum) ONEWORDINLINE(0xA247);
+
+
+/*
+ * GetToolTrapAddress()
+ *
+ * Availability:
+ * Non-Carbon CFM: in InterfaceLib 7.1 and later
+ * CarbonLib: not available
+ * Mac OS X: not available
+ */
+#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM
+#pragma parameter __A0 GetToolTrapAddress(__D0)
+#endif
+EXTERN_API( UniversalProcPtr )
+GetToolTrapAddress(UInt16 trapNum) ONEWORDINLINE(0xA746);
+
+
+/*
+ * SetToolTrapAddress()
+ *
+ * Availability:
+ * Non-Carbon CFM: in InterfaceLib 7.1 and later
+ * CarbonLib: not available
+ * Mac OS X: not available
+ */
+#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM
+#pragma parameter SetToolTrapAddress(__A0, __D0)
+#endif
+EXTERN_API( void )
+SetToolTrapAddress(
+ UniversalProcPtr trapAddr,
+ UInt16 trapNum) ONEWORDINLINE(0xA647);
+
+
+/*
+ * GetToolboxTrapAddress()
+ *
+ * Availability:
+ * Non-Carbon CFM: in InterfaceLib 7.1 and later
+ * CarbonLib: not available
+ * Mac OS X: not available
+ */
+#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM
+#pragma parameter __A0 GetToolboxTrapAddress(__D0)
+#endif
+EXTERN_API( UniversalProcPtr )
+GetToolboxTrapAddress(UInt16 trapNum) ONEWORDINLINE(0xA746);
+
+
+/*
+ * SetToolboxTrapAddress()
+ *
+ * Availability:
+ * Non-Carbon CFM: in InterfaceLib 7.1 and later
+ * CarbonLib: not available
+ * Mac OS X: not available
+ */
+#if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM
+#pragma parameter SetToolboxTrapAddress(__A0, __D0)
+#endif
+EXTERN_API( void )
+SetToolboxTrapAddress(
+ UniversalProcPtr trapAddr,
+ UInt16 trapNum) ONEWORDINLINE(0xA647);
+
+
+#endif /* CALL_NOT_IN_CARBON */
+
+#if TARGET_CPU_PPC
+#if CALL_NOT_IN_CARBON
+/*
+ * GetTrapVector()
+ *
+ * Availability:
+ * Non-Carbon CFM: in InterfaceLib 7.1 and later
+ * CarbonLib: not available
+ * Mac OS X: not available
+ */
+EXTERN_API( UniversalProcHandle )
+GetTrapVector(UInt16 trapNumber);
+
+
+#endif /* CALL_NOT_IN_CARBON */
+
+#endif /* TARGET_CPU_PPC */
+
+
+
+
+#ifdef PRAGMA_IMPORT_OFF
+#pragma import off
+#elif PRAGMA_IMPORT
+#pragma import reset
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __PATCHES__ */
+