VALENT (Structures)
Last changed: anonymous

.
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 on MSDN