_RegisterClassEx() private method

private _RegisterClassEx ( [ lpwcx ) : short
lpwcx [
return short
Ejemplo n.º 1
0
        public static short RegisterClassEx(ref WNDCLASSEX lpwcx)
        {
            short num = NativeMethods._RegisterClassEx(ref lpwcx);

            if (num == 0)
            {
                HRESULT.ThrowLastError();
            }
            return(num);
        }