Changeset 400
- Timestamp:
- Aug 7, 2012, 2:44:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/URegistry.pas
r393 r400 17 17 rrKeyDynData = HKEY($80000006)); 18 18 19 TRegistryContext = record 20 RootKey: HKEY; 21 Key: string; 22 end; 23 19 24 { TRegistryEx } 20 25 … … 31 36 end; 32 37 38 function RegContext(RootKey: HKEY; Key: string): TRegistryContext; 39 40 33 41 implementation 42 43 function RegContext(RootKey: HKEY; Key: string): TRegistryContext; 44 begin 45 Result.RootKey := RootKey; 46 Result.Key := Key; 47 end; 34 48 35 49 { TRegistryEx }
Note:
See TracChangeset
for help on using the changeset viewer.