1158
Appendix A: System Routines — Windows
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
WinBitmapPut
Declaration:
void
WinBitmapPut
(WINDOW *
w
, SWORD
x0
, SWORD
y0
,
BITMAP *
Bitmap
, WORD
Attr
)
Category(ies):
Windows
Description:
Store a bitmap into a window.
Inputs:
w
— WINDOW struct of a previously opened window.
x0
,
y0
— WINDOW coordinates of location to store
Bitmap
.
Bitmap
— BITMAP to store.
Attr
— A_REPLACE Replace the destination region with the source
bitmap.
A_REVERSE Replace the destination region with the
inverse of the source bitmap.
A_XOR Exclusive-OR the source bitmap into the
destination region.
A_OR OR the source bitmap into the destination
region.
A_AND AND the source bitmap into the destination
region.
Outputs:
None
Assumptions:
None
Side Effects:
None
Availability:
All versions of the TI
-
89 / TI
-
92 Plus.
TI
-
89 / TI
-
92 Plus
Differences:
None
See Also: WinBitmapGet, WinBitmapSize, WinBitmapSizeExt
Example:
See
WinBitmapGet
.