RegEnumKeyEx
C# Signature:
[DllImport("advapi32.dll", EntryPoint = "RegEnumKeyEx")]
extern private static int RegEnumKeyEx(UIntPtr hkey,
uint index,
StringBuilder lpName,
ref uint lpcbName,
IntPtr reserved,
IntPtr lpClass,
IntPtr lpcbClass,
out long lpftLastWriteTime);VB Signature:
Declare Auto Function RegEnumKeyEx Lib "Advapi32" ( _
ByVal hKey As IntPtr, _
ByVal dwIndex As Integer, _
ByVal lpName As StringBuilder, _
ByRef lpcName As Integer, _
ByVal lpReserved As IntPtr, _
ByVal lpClass As IntPtr, _
ByVal lpcClass As IntPtr, _
ByVal lpftLastWriteTime As IntPtr _
) As IntegerNotes:
Sample Code:
Última actualización