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

Search Results for "RegEnumValue" in [All]

advapi32

.
Summary
The RegEnumValue function enumerates the values for the specified open registry key. The function copies one indexed value name and data block for the key each time it is called.
.

static extern uint RegEnumValue(

.

Declare Auto Function RegEnumValue Lib "Advapi32" ( _

.

LONG RegEnumValue(

.

     ret = RegEnumValue(hKey, i, sb, NameSize, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero)

.
Documentation
[RegEnumValue] on MSDN

rapi

.

[DllImport("rapi.dll", EntryPoint = "CeRegEnumValue")]

.

static extern uint CeRegEnumValue(uint hKey, int dwIndex, [MarshalAs(UnmanagedType.LPWStr)] string lpszValueName, ref int lpcbValueName, int lpReserved, ref int lpType, byte[] lpData, ref int lpcbData);

.

Declare Function CeRegEnumValue Lib "rapi.dll" (TODO) As TODO

.

    ret = CeRegEnumValue(key, index++, valueName,

.
Documentation
[CeRegEnumValue] on MSDN

 
Access PInvoke.net directly from VS: