InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
SysFileType.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Steve Pellegrin
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //========================================================================================
23 
24 #ifndef __SYSFILETYPE__
25 #define __SYSFILETYPE__
26 
27 // Enumerate all of the different types of files used by InDesign.
28 enum SysFileType
29 {
30  kUnknownFileType = 0,
31  kPubFileType,
32  kTplFileType,
33  kBookFileType,
34  kAssetLibraryType,
35  kDefaultsFileType,
36  kDictionaryType,
37  kKBSCFileType,
38  kAdobePluginType,
39  kAdobeRequiredType,
40  k3rdPartyPluginType,
41  kUserDictionaryType,
42  kLockFileType,
43  kInCopyFileType, // .incd
44  kXMLFileType,
45  kInCopyInterchangeFileType, // .incx
46  kInCopyTemplateFileType,
47  kJobOptionsFileType,
48  kPDFStyleFileType,
49  kJobBagFileType,
50  kJobBagPackageFileType,
51  kAssignmentPackageFileType,
52  kINXAltPackageFileType,
53  kInCopyMarkupFileType // .icml
54 };
55 
56 #endif // __SYSFILETYPE__
57