Esempio n. 1
0
 public static extern uint GetBkColor(HDC hDC);
Esempio n. 2
0
 public static extern bool SetViewportOrgEx(HDC hDC, int x, int y, out Win32.POINT pptOld);
Esempio n. 3
0
 public static extern nuint SetTextAlign(HDC hDC, nuint align);
Esempio n. 4
0
 public static extern bool SetWindowExtEx(HDC hDC, int x, int y, out Win32.SIZE size);
Esempio n. 5
0
 public static extern uint GetNearestColor(HDC hDC, uint color);
Esempio n. 6
0
 public static extern bool GetTextMetrics(HDC hdc, out Win32.TEXTMETRIC lptm);
Esempio n. 7
0
 public static extern bool RectVisible(HDC hDC, ref Win32.RECT rc);
Esempio n. 8
0
 public static extern bool GetDCOrgEx(HDC hDC, out Win32.POINT pptOld);
Esempio n. 9
0
 public uint GetDCOrg(HDC hDC)
 {
     Win32.POINT pt;
     GetDCOrgEx(hDC, out pt);
     return(pt.ToDWord());
 }
Esempio n. 10
0
 public static extern bool GetCurrentPositionEx(HDC hdc, out Win32.POINT lpPoint);
Esempio n. 11
0
 public uint GetCurrentPosition(HDC hDC)
 {
     Win32.POINT pt;
     GetCurrentPositionEx(hDC, out pt);
     return(pt.ToDWord());
 }
Esempio n. 12
0
 public static extern nint GetClipBox(HDC hDC, out Win32.RECT rc);
Esempio n. 13
0
 public static extern nint GetBkMode(HDC hDC);
Esempio n. 14
0
 public static extern nint SetROP2(HDC hDC, nint mode);
Esempio n. 15
0
 public static extern uint GetTextColor(HDC hDC);
Esempio n. 16
0
 public static extern nint _GetDeviceCaps(HDC hDC, nint cap);
Esempio n. 17
0
 static extern bool GetTextExtentPoint(HDC hdc, string lpString, int cbString, out Win32.SIZE lpSize);
Esempio n. 18
0
 public static extern nint GetMapMode(HDC hDC);
Esempio n. 19
0
 public static extern bool PtVisible(HDC hDC, nint x, nint y);
Esempio n. 20
0
 public static extern nint SetStretchBltMode(HDC hDC, nint mode);
Esempio n. 21
0
 public static extern bool PlayMetaFile(HDC hDC, HENHMETAFILE hMetaFile);
Esempio n. 22
0
 public static extern uint SetTextColor(HDC hDC, uint color);
Esempio n. 23
0
 public static extern bool SetBrushOrgEx(HDC hDC, int x, int y, out Win32.POINT pptOld);
Esempio n. 24
0
 public static extern uint GetPixel(HDC hDC, nint x, nint y);
Esempio n. 25
0
 public static extern HGDIOBJ CreateDiscardableBitmap(HDC hDC, nint width, nint height);
Esempio n. 26
0
 public static extern nint GetROP2(HDC hDC);
Esempio n. 27
0
 public static extern nuint GetTextAlign(HDC hDC);
Esempio n. 28
0
 public static extern nint GetStretchBltMode(HDC hDC);
Esempio n. 29
0
 public static extern uint _GetSystemPaletteEntries(HDC hDC, uint iStartIndex, uint nEntries, IntPtr ptr);
Esempio n. 30
0
 public static extern nint SetMapMode(HDC hDC, nint mode);