-
Notifications
You must be signed in to change notification settings - Fork 43
/
ECVComponent.r
executable file
·50 lines (48 loc) · 1.03 KB
/
ECVComponent.r
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#define thng_RezTemplateVersion 1
#include <Carbon/Carbon.r>
#include <QuickTime/QuickTime.r>
resource 'thng' (256)
{
'vdig', // Type
'soft', // SubType
'asdf', // Manufacturer
0, // use componentHasMultiplePlatforms
0,
0,
0,
'STR ', // Name Type
128, // Name ID
'STR ', // Info Type
129, // Info ID
0, // Icon Type
0, // Icon ID
0, // Version
componentHasMultiplePlatforms + componentDoAutoVersion, // Registration flags
0, // Resource ID of Icon Family
{
#if defined(ppc_YES)
0, // Component Flags
'dlle', // Code Resource type - Entry point found by symbol name 'dlle' resource
256, // ID of 'dlle' resource
platformPowerPCNativeEntryPoint,
#endif
#if defined(i386_YES)
0, // Component Flags
'dlle', // Code Resource type - Entry point found by symbol name 'dlle' resource
256, // ID of 'dlle' resource
platformIA32NativeEntryPoint,
#endif
};
};
resource 'STR ' (128)
{
"ECVComponent"
};
resource 'STR ' (129)
{
"EasyCapViewer QuickTime Video Digitizer Component"
};
resource 'dlle' (256)
{
"ECVComponentDispatch"
};