コード例 #1
0
        public static WNDCLASSEX Create()
        {
            var result = new WNDCLASSEX
            {
                cbSize = (UInt32)Marshal.SizeOf(typeof(WNDCLASSEX))
            };

            return(result);
        }
コード例 #2
0
 internal static extern UInt16 RegisterClassEx([In] ref WNDCLASSEX lpwndClass);