Exemple #1
0
        public static RECT GetClipCursor()
        {
            RectStruct rectStruct = new RectStruct();
            bool       succes     = NativeBase.GetClipCursor(ref rectStruct);

            if (!succes)
            {
                throw new GetClipCursorFailedException();
            }
            return(rectStruct);
        }
Exemple #2
0
 public static extern bool GetClipCursor(ref RectStruct lprect);