cadencii.win32.RegEnumKeyExW C# (CSharp) Method

RegEnumKeyExW() private method

private RegEnumKeyExW ( uint hKey, uint dwIndex, [ pName, uint pcbName, uint pReserved, [ pClass, uint pcbClass, FILETIME pftLastWrite ) : int
hKey uint
dwIndex uint
pName [
pcbName uint
pReserved uint
pClass [
pcbClass uint
pftLastWrite FILETIME
return int
        public static unsafe extern int RegEnumKeyExW(
            uint hKey,
            uint dwIndex,
            [MarshalAs( UnmanagedType.LPWStr )] string pName,
            uint* pcbName,
            uint* pReserved,
            [MarshalAs( UnmanagedType.LPWStr )] string pClass,
            uint* pcbClass,
            FILETIME* pftLastWrite );
win32