Changeset 70 for trunk/include/helpers/gpih.h
- Timestamp:
- May 20, 2001, 5:38:55 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/gpih.h
r64 r70 235 235 typedef GPIHICON2BITMAP *PGPIHICON2BITMAP; 236 236 237 /* ****************************************************************** 238 * 239 * XBitmap functions 240 * 241 ********************************************************************/ 242 243 /* 244 *@@ XBITMAP: 245 * representation of an XBitmap, which is created 246 * with gpihCreateXBitmap and destroyed with 247 * gpihDestroyXBitmap. 248 * 249 * An XBitmap is essentially a set of a memory 250 * device context, a memory presentation space, 251 * and a bitmap which is selected into that 252 * HPS. 253 * 254 *@@added V0.9.12 (2001-05-20) [umoeller] 255 */ 256 257 typedef struct _XBITMAP 258 { 259 HDC hdcMem; // memory DC 260 HPS hpsMem; // memory PS 261 HBITMAP hbm; // bitmap handle 262 SIZEL szl; // size of bitmap 263 } XBITMAP, *PXBITMAP; 264 265 PXBITMAP XWPENTRY gpihCreateXBitmap(HAB hab, LONG cx, LONG cy); 266 typedef PXBITMAP XWPENTRY GPIHCREATEXBITMAP(HAB hab, LONG cx, LONG cy); 267 typedef GPIHCREATEXBITMAP *PGPIHCREATEXBITMAP; 268 269 VOID XWPENTRY gpihDestroyXBitmap(PXBITMAP *ppbmp); 270 typedef VOID XWPENTRY GPIHDESTROYXBITMAP(PXBITMAP *ppbmp); 271 typedef GPIHDESTROYXBITMAP *PGPIHDESTROYXBITMAP; 272 237 273 #endif 238 274
Note:
See TracChangeset
for help on using the changeset viewer.