Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

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.

.
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

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!

Documentation

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

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).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions