home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: WPS_PM / WPS_PM.zip / npssp181.zip / npswpswa.h < prev    next >
C/C++ Source or Header  |  1995-10-08  |  576b  |  27 lines

  1. enum AnimationCallType
  2. {  AnimationInitialize, AnimationDraw, AnimationErase, AnimationTerminate
  3. };
  4.  
  5. struct AnimationData
  6. {  HPS hps;
  7.    HWND hwnd;
  8.    RECTL rectWindow;
  9.  
  10.    POINTL ptCenter, ptRelRightTop;
  11.    BOOL fOpen;
  12.    enum AnimationCallType animCallType;
  13.  
  14.    LONG lStep, cTotalSteps;
  15.    LONG cAfterimages;
  16.    LONG lParameter;
  17.  
  18.    LONG lVersion;
  19.    RECTL rectScreen;
  20.  
  21.    LONG alReserved[27];  // do not use it
  22.  
  23.    CHAR achBuffer[4000];  // you can use it freely
  24. };
  25.    
  26. typedef BOOL EXPENTRY (*PfnAnimation)(struct AnimationData *pAnimationData);
  27.