@pinvoke=http://pinvoke.net/$$$.htm Summary: Converts a Unicode-Char-Array to an Unicode_String !!!!C# Signature: [DllImport("ntdll.dll")] public static extern void RtlInitUnicodeString( ref UNICODE_STRING DestinationString, [MarshalAs(UnmanagedType.LPWStr)] string SourceString); !!!!C# Signature: [DllImport("ntdll.dll")] public static extern void RtlInitUnicodeString( out UNICODE_STRING DestinationString, [MarshalAs(UnmanagedType.LPWStr)] string SourceString); !!!!User-Defined Types: public struct UNICODE_STRING { public ushort Length; public ushort MaximumLength; [MarshalAs(UnmanagedType.LPWStr)] public string Buffer; } !!!!User-Defined Types: [UNICODE_STRING] !!!!Sample Code: http://www.rootkit.com/vault/hoglund/migbot.zip
Edit ntdll.RtlInitUnic...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.