home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / samples / mm / codec / sampinst.h < prev    next >
Text File  |  1999-05-11  |  1KB  |  19 lines

  1. /*****************************************************************************/
  2. /*                                                                           */
  3. /* SAMPINST.H: Sample Codec instance data definition.  This instance         */
  4. /*             structure holds both the encode and decode specific items.    */
  5. /*                                                                           */
  6. /* Copyright (c) IBM Corporation 1991,1994             All Rights Reserved   */
  7. /*                                                                           */
  8. /*****************************************************************************/
  9.  
  10. typedef struct _main_inst
  11.    {
  12.    BOOL   fInstanceInUse;    /* Flag holding state of instance.              */
  13.    ULONG  ulWidth;           /* The frame width for the instance.            */
  14.    ULONG  ulHeight;          /* The frame height for the instance.           */
  15.    ULONG  ulColorEncoding;   /* The color format of the source data.         */
  16.    } MAIN_INST;
  17.  
  18. typedef MAIN_INST *PMAIN_INST;
  19.