Lines Matching refs:hdc

66 func GetDeviceCaps(hdc HDC, index int) int {
68 uintptr(hdc),
88 func AbortDoc(hdc HDC) int {
90 uintptr(hdc))
112 func CloseEnhMetaFile(hdc HDC) HENHMETAFILE {
114 uintptr(hdc))
134 func CreateCompatibleDC(hdc HDC) HDC {
136 uintptr(hdc))
155 func CreateDIBSection(hdc HDC, pbmi *BITMAPINFO, iUsage uint, ppvBits *unsafe.Pointer, hSection HAN…
157 uintptr(hdc),
187 func DeleteDC(hdc HDC) bool {
189 uintptr(hdc))
201 func Ellipse(hdc HDC, nLeftRect, nTopRect, nRightRect, nBottomRect int) bool {
203 uintptr(hdc),
212 func EndDoc(hdc HDC) int {
214 uintptr(hdc))
219 func EndPage(hdc HDC) int {
221 uintptr(hdc))
269 func GetTextExtentExPoint(hdc HDC, lpszStr *uint16, cchString, nMaxExtent int, lpnFit, alpDx *int, …
271 uintptr(hdc),
282 func GetTextExtentPoint32(hdc HDC, lpString *uint16, c int, lpSize *SIZE) bool {
284 uintptr(hdc),
292 func GetTextMetrics(hdc HDC, lptm *TEXTMETRIC) bool {
294 uintptr(hdc),
300 func LineTo(hdc HDC, nXEnd, nYEnd int) bool {
302 uintptr(hdc),
309 func MoveToEx(hdc HDC, x, y int, lpPoint *POINT) bool {
311 uintptr(hdc),
319 func PlayEnhMetaFile(hdc HDC, hemf HENHMETAFILE, lpRect *RECT) bool {
321 uintptr(hdc),
328 func Rectangle(hdc HDC, nLeftRect, nTopRect, nRightRect, nBottomRect int) bool {
330 uintptr(hdc),
339 func ResetDC(hdc HDC, lpInitData *DEVMODE) HDC {
341 uintptr(hdc),
347 func SelectObject(hdc HDC, hgdiobj HGDIOBJ) HGDIOBJ {
349 uintptr(hdc),
359 func SetBkMode(hdc HDC, iBkMode int) int {
361 uintptr(hdc),
371 func SetBrushOrgEx(hdc HDC, nXOrg, nYOrg int, lppt *POINT) bool {
373 uintptr(hdc),
381 func SetStretchBltMode(hdc HDC, iStretchMode int) int {
383 uintptr(hdc),
389 func SetTextColor(hdc HDC, crColor COLORREF) COLORREF {
391 uintptr(hdc),
401 func SetBkColor(hdc HDC, crColor COLORREF) COLORREF {
403 uintptr(hdc),
413 func StartDoc(hdc HDC, lpdi *DOCINFO) int {
415 uintptr(hdc),
421 func StartPage(hdc HDC) int {
423 uintptr(hdc))
447 func SetDIBitsToDevice(hdc HDC, xDest, yDest, dwWidth, dwHeight, xSrc, ySrc int, uStartScan, cScanL…
449 uintptr(hdc),
465 func ChoosePixelFormat(hdc HDC, pfd *PIXELFORMATDESCRIPTOR) int {
467 uintptr(hdc),
473 func DescribePixelFormat(hdc HDC, iPixelFormat int, nBytes uint, pfd *PIXELFORMATDESCRIPTOR) int {
475 uintptr(hdc),
492 func GetPixelFormat(hdc HDC) int {
494 uintptr(hdc),
499 func SetPixelFormat(hdc HDC, iPixelFormat int, pfd *PIXELFORMATDESCRIPTOR) bool {
501 uintptr(hdc),
508 func SwapBuffers(hdc HDC) bool {
509 ret, _, _ := procSwapBuffers.Call(uintptr(hdc))