Changeset 125 for trunk/include
- Timestamp:
- 08/15/08 21:21:54 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/regfi.h
r121 r125 89 89 90 90 /* Constants used for validation */ 91 /* XXX: Can we add clock resolution validation as well as range? It has 92 * been reported that Windows timestamps are never more than a 93 * certain granularity (250ms?), which could be used to help 94 * eliminate false positives. Would need to validate this and 95 * perhaps conservatively implement a check. 96 */ 91 97 /* Minimum time is Jan 1, 1990 00:00:00 */ 92 98 #define REGFI_MTIME_MIN_HIGH 0x01B41E6D … … 108 114 #define NK_TYPE_NORMALKEY 0x0020 109 115 #define NK_TYPE_ROOTKEY 0x002c 110 /* TODO: Unknown type that shows up in Vista registries */116 /* XXX: Unknown type that shows up in Vista registries */ 111 117 #define NK_TYPE_UNKNOWN1 0x1020 112 118 … … 216 222 217 223 /* header information */ 218 /* XXX: should we be looking for types other than the root key type? */219 224 uint16 key_type; 220 225 uint8 magic[REC_HDR_SIZE]; … … 224 229 char* classname; 225 230 char* keyname; 226 uint32 parent_off; /* back pointer in registry hive*/227 uint32 classname_off; 231 uint32 parent_off; /* pointer to parent key */ 232 uint32 classname_off; 228 233 229 234 /* max lengths */
Note: See TracChangeset
for help on using the changeset viewer.