Changeset 160 for Include/api_gdi.sbp
- Timestamp:
- Mar 13, 2007, 1:13:06 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/api_gdi.sbp
r141 r160 16 16 Const _FuncName_GetEnhMetaFileDescription = "GetEnhMetaFileDescriptionW" 17 17 Const _FuncName_GetObject = "GetObjectW" 18 Const _FuncName_GetTextFace = "GetTextFaceW" 18 19 Const _FuncName_GetTextMetrics = "GetTextMetricsW" 19 20 Const _FuncName_ResetDC = "ResetDCW" … … 32 33 Const _FuncName_GetEnhMetaFileDescription = "GetEnhMetaFileDescriptionA" 33 34 Const _FuncName_GetObject = "GetObjectA" 35 Const _FuncName_GetTextFace = "GetTextFaceA" 34 36 Const _FuncName_GetTextMetrics = "GetTextMetricsA" 35 37 Const _FuncName_ResetDC = "ResetDCA" … … 428 430 Const DMCOLLATE_TRUE = 1 429 431 430 Const CCHDEVICENAME = 32431 432 Const CCHFORMNAME = 32 432 433 Type DEVMODEW … … 571 572 572 573 Declare Function AbortPath Lib "gdi32" (hdc As HDC) As BOOL 574 Type BLENDFUNCTION 575 BlendOp As Byte 576 BlendFlags As Byte 577 SourceConstantAlpha As Byte 578 AlphaFormat As Byte 579 End Type 580 Declare Function AlphaBlend Lib "msimg32" (hdcDest As HDC, nXDest As Long, nYDest As Long, nDestWidth As Long, nDestHeight As Long, hdcSrc As HDC, XSrc As Long, YSrc As Long, nSrcWidth As Long, nSrcHeight As Long, ByRef blendfunc As BLENDFUNCTION) As Long 573 581 Declare Function Arc Lib "gdi32" (hdc As HDC, nLeftRect As Long, nTopRect As Long, nRightRect As Long, nBottomRect As Long, nXStartArc As Long, nYStartArc As Long, nXEndArc As Long, nYEndArc As Long) As BOOL 574 582 Declare Function BeginPath Lib "gdi32" (hdc As HDC) As BOOL … … 1014 1022 Declare Function GetTextExtentPoint32 Lib "gdi32" Alias "GetTextExtentPoint32A" (hdc As HDC, pString As PCSTR, cbString As Long, ByRef Size As SIZE) As Long 1015 1023 #endif 1024 Declare Function GetTextFace Lib "gdi32" Alias _FuncName_GetTextFace (hdc As HDC, nCount As Long, lpFacename As LPTSTR)As Long 1016 1025 1017 1026 Const TMPF_FIXED_PITCH = &H01 … … 1161 1170 Declare Function TextOut Lib "gdi32" Alias "TextOutA" (hdc As HDC, nXStart As Long, nYStart As Long, pString As PCSTR, cbString As Long) As Long 1162 1171 #endif 1172 Declare Function TransparentBlt Lib "msimg32" (hdcDest As HDC, nXDest As Long, nYDest As Long, nDestWidth As Long, nDestHeight As Long, hdcSrc As HDC, XSrc As Long, YSrc As Long, nSrcWidth As Long, nSrcHeight As Long, dwRop As DWord) As Long 1163 1173 1164 1174 /* Pixel Format */
Note:
See TracChangeset
for help on using the changeset viewer.