Changeset 70 for trunk/include


Ignore:
Timestamp:
May 20, 2001, 5:38:55 PM (24 years ago)
Author:
umoeller
Message:

misc updates

Location:
trunk/include/helpers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/gpih.h

    r64 r70  
    235235    typedef GPIHICON2BITMAP *PGPIHICON2BITMAP;
    236236
     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
    237273#endif
    238274
  • trunk/include/helpers/threads.h

    r49 r70  
    4747            ULONG   cbStruct;
    4848            void*   pThreadFunc;    // as passed to thrCreate, really a PTHREADFUNC
    49             PBOOL   pfRunning;      // as passed to thrCreate
     49            PULONG  ptidRunning;      // as passed to thrCreate V0.9.12 (2001-05-20) [umoeller]
    5050            const char *pcszThreadName; // as passed to thrCreate
    5151            ULONG   flFlags;        // as passed to thrCreate
     
    5858            HAB     hab;            // for PM threads
    5959            HMQ     hmq;            // for PM threads
    60             BOOL    fExitComplete;  // TRUE if thr_fntGeneric is exiting
     60            BOOL    fExitComplete;
    6161
    6262            // data to be maintained by application
Note: See TracChangeset for help on using the changeset viewer.