home *** CD-ROM | disk | FTP | other *** search
/ Fujiology Archive / fujiology_archive_v1_0.iso / !FALCON / NOCREW / MP2_0997.ZIP / mp2_0997 / src / mp2audio.h < prev    next >
C/C++ Source or Header  |  1998-10-31  |  354b  |  20 lines

  1. #ifndef _MP2AUDIO_H_
  2. #define _MP2AUDIO_H_
  3.  
  4. #define STOP_BLOCK 1024
  5. #define BLOCK_SIZE DEFAULT_BLOCK_SIZE*1024L
  6.  
  7. typedef struct { int x,y,w,h; } CORDS;
  8.  
  9. /* defines for toggle_object() */
  10. #define SET_NORMAL -1
  11. #define TOGGLE 0
  12. #define SET_SELECTED 1
  13.  
  14. typedef struct {
  15.     long findex;
  16.     char fname[255];
  17. } DIRBUF;
  18.  
  19. #endif /* _MP2AUDIO_H_ */
  20.