Changeset 70 for trunk/include
- Timestamp:
- May 20, 2001, 5:38:55 PM (24 years ago)
- Location:
- trunk/include/helpers
- Files:
-
- 2 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 -
trunk/include/helpers/threads.h
r49 r70 47 47 ULONG cbStruct; 48 48 void* pThreadFunc; // as passed to thrCreate, really a PTHREADFUNC 49 P BOOL pfRunning; // as passed to thrCreate49 PULONG ptidRunning; // as passed to thrCreate V0.9.12 (2001-05-20) [umoeller] 50 50 const char *pcszThreadName; // as passed to thrCreate 51 51 ULONG flFlags; // as passed to thrCreate … … 58 58 HAB hab; // for PM threads 59 59 HMQ hmq; // for PM threads 60 BOOL fExitComplete; // TRUE if thr_fntGeneric is exiting60 BOOL fExitComplete; 61 61 62 62 // data to be maintained by application
Note:
See TracChangeset
for help on using the changeset viewer.