CeRegDeleteValue (rapi)
Last changed: -131.107.0.102

.
Summary

C# Signature:

[DllImport("rapi.dll", SetLastError=true)]
static extern uint CeRegDeleteValue(uint hKey, string sValueName);

VB Signature:

Declare Function CeRegDeleteValue Lib "rapi.dll" (ByVal hKey as Integer, ByVal sValueName as String) As Integer

VB .Net

<DllImport("rapi.dll", CharSet:=CharSet.Unicode)> _

Public Function CeRegDeleteValue(ByVal hKey as Integer, ByVal sValueName as String) As Integer

End Function

User-Defined Types:

C#

uint HKEY_CLASSES_ROOT = 0x80000000;

uint HKEY_CURRENT_USER = 0x80000001;

uint HKEY_LOCAL_MACHINE = 0x80000002;

uint HKEY_USERS = 0x80000003;

VB

Const HKEY_CLASSES_ROOT As Integer = &H80000000

Const HKEY_CURRENT_USER As Integer = &H80000001

Const HKEY_LOCAL_MACHINE As Integer = &H80000002

Const HKEY_USERS As Integer = &H80000003

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation