Desktop Functions: Smart Device Functions:
|
CeRegDeleteValue (rapi)
rapi is for smart devices, not desktop Windows. Therefore, this information only applies to code using the .NET Compact Framework. To see if information for CeRegDeleteValue in other DLLs exists, click on Find References to the right. C# Signature:
[DllImport("rapi.dll", SetLastError=true)] 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 Const HKEY_CLASSES_ROOT As Integer = 0x80000000 Const HKEY_CURRENT_USER As Integer = 0x80000001 Const HKEY_LOCAL_MACHINE As Integer = 0x80000002 Const HKEY_USERS As Integer = 0x80000003 Alternative Managed API:Do you know one? Please contribute it! Notes:None. Tips & Tricks:Please add some! Sample Code:Please add some! Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|