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/DigitalHubRegistry.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/DigitalHubRegistry.h')
| -rw-r--r-- | common/quicktime_win32/DigitalHubRegistry.h | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/common/quicktime_win32/DigitalHubRegistry.h b/common/quicktime_win32/DigitalHubRegistry.h new file mode 100644 index 0000000..4e288ec --- /dev/null +++ b/common/quicktime_win32/DigitalHubRegistry.h @@ -0,0 +1,86 @@ +/* + File: DigitalHubRegistry.h + + Contains: Digital Hub AppleEvents + + Version: QuickTime 7.3 + + Copyright: (c) 2007 (c) 2002 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 __DIGITALHUBREGISTRY__ +#define __DIGITALHUBREGISTRY__ + +#ifndef __CONDITIONALMACROS__ +#include <ConditionalMacros.h> +#endif + +#ifndef __AEREGISTRY__ +#include <AERegistry.h> +#endif + + + + +#if PRAGMA_ONCE +#pragma once +#endif + +#if PRAGMA_IMPORT +#pragma import on +#endif + +/* class */ +enum { + kDigiHubEventClass = FOUR_CHAR_CODE('dhub') +}; + + +/* events*/ +enum { + kDigiHubMusicCD = FOUR_CHAR_CODE('aucd'), /* 1635083108 0x61756364*/ + kDigiHubPictureCD = FOUR_CHAR_CODE('picd'), /* 1885954916 0x70696364*/ + kDigiHubVideoDVD = FOUR_CHAR_CODE('vdvd'), /* 1986295396 0x76647664*/ + kDigiHubBlankCD = FOUR_CHAR_CODE('bcd '), /* 1650680864 0x62636420*/ + kDigiHubBlankDVD = FOUR_CHAR_CODE('bdvd') /* 1650751076 0x62647664*/ +}; + +/* + Parameters for Digital Hub AppleEvents: + + kDigiHubMusicCD + Required parameters: + --> keyDirectObject typeFSRef + + kDigiHubPictureCD + Required parameters: + --> keyDirectObject typeFSRef + + kDigiHubVideoDVD + Required parameters: + --> keyDirectObject typeFSRef + + kDigiHubBlankCD + Required parameters: + --> keyDirectObject typeUTF8Text + + kDigiHubBlankDVD + Required parameters: + --> keyDirectObject typeUTF8Text + +*/ + +#ifdef PRAGMA_IMPORT_OFF +#pragma import off +#elif PRAGMA_IMPORT +#pragma import reset +#endif + + +#endif /* __DIGITALHUBREGISTRY__ */ + |