@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: TODO - a short description !!!!C# Definition: [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] internal unsafe struct VALENT { internal IntPtr ve_valuename; internal uint ve_valuelen; internal UIntPtr ve_valueptr; internal RegType ve_type; internal string Name { get { return new string((char*) ve_valuename); } } internal string Value { get { return new string((char*) ve_valueptr); } } internal static uint Size { get { return (uint) Marshal.SizeOf(typeof (VALENT)); } } } !!!!VB Definition: Structure VALENT Public TODO End Structure !!!!User-Defined Field Types: [RegType] !!!!Notes: None. Documentation: VALENT@msdn on MSDN
Edit Structures.VALENT
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.