.
.
public static extern uint CeRegDeleteKey(
.
function info on msdn at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceactsy/html/cerefCeRegDeleteKeyRAPI.asp
.
CeRegDeleteKey(key,"BadKey");
.
.
public static extern int RegDeleteKey(IntPtr hKey, string lpSubKey);
.
.
The RegDeleteKeyEx function deletes a subkey from the specified platform-specific view of the registry. Use '''only''' on 64-bit Operating Systems.
9/18/2008 9:37:25 AM - Colin-130.15.48.250
.
[DllImport("advapi32.dll", EntryPoint = "RegDeleteKeyEx", SetLastError = true)]
.
public static extern int RegDeleteKeyEx(
.
Declare Function RegDeleteKeyEx Lib "advapi32.dll" (hKey As UIntPtr, lpSubKey As String, samDesired As UInteger, Reserved As UInteger) As Integer
.
.
The RegDeleteKeyEx function deletes a subkey from the specified platform-specific view of the registry. Use '''only''' on 64-bit Operating Systems.
9/18/2008 9:37:25 AM - Colin-130.15.48.250
.
[DllImport("advapi32.dll", EntryPoint = "RegDeleteKeyEx", SetLastError = true)]
.
public static extern int RegDeleteKeyEx(
.
Declare Function RegDeleteKeyEx Lib "advapi32.dll" (TODO) As TODO
.