Ejemplo n.º 1
0
        //Use this function to make a new one with cbSize already filled in.
        //For example:
        //var WndClss = WNDCLASSEX.Build()
        public static WNDCLASSEX Build()
        {
            var nw = new WNDCLASSEX();

            nw.cbSize = Marshal.SizeOf(typeof(WNDCLASSEX));
            return(nw);
        }
Ejemplo n.º 2
0
 public static extern short RegisterClassEx([In] ref WNDCLASSEX lpwcx);