Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SafeRegistryHandle.cs
Go to the documentation of this file.
1using System;
3
5
7{
9 : base(ownsHandle: true)
10 {
11 }
12
13 public SafeRegistryHandle(IntPtr preexistingHandle, bool ownsHandle)
14 : base(ownsHandle)
15 {
16 SetHandle(preexistingHandle);
17 }
18
19 protected override bool ReleaseHandle()
20 {
22 }
23}
SafeRegistryHandle(IntPtr preexistingHandle, bool ownsHandle)
static int RegCloseKey(IntPtr hKey)