File: PropID.h

package info (click to toggle)
nestopia 1.53.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 12,416 kB
  • sloc: cpp: 130,178; xml: 27,245; ansic: 4,053; makefile: 964; sh: 19
file content (50 lines) | stat: -rw-r--r-- 740 bytes parent folder | download | duplicates (3)
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
// Interface/PropID.h

#ifndef __INTERFACE_PROPID_H
#define __INTERFACE_PROPID_H

enum
{
  kpidNoProperty = 0,
  
  kpidHandlerItemIndex = 2,
  kpidPath,
  kpidName,
  kpidExtension,
  kpidIsFolder,
  kpidSize,
  kpidPackedSize,
  kpidAttributes,
  kpidCreationTime,
  kpidLastAccessTime,
  kpidLastWriteTime,
  kpidSolid, 
  kpidCommented, 
  kpidEncrypted, 
  kpidSplitBefore, 
  kpidSplitAfter, 
  kpidDictionarySize, 
  kpidCRC, 
  kpidType,
  kpidIsAnti,
  kpidMethod,
  kpidHostOS,
  kpidFileSystem,
  kpidUser,
  kpidGroup,
  kpidBlock,
  kpidComment,
  kpidPosition,

  kpidTotalSize = 0x1100,
  kpidFreeSpace, 
  kpidClusterSize,
  kpidVolumeName,

  kpidLocalName = 0x1200,
  kpidProvider,

  kpidUserDefined = 0x10000
};

#endif