home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 July / PCWorld_1999-07_cd.bin / 602 / WBPERSON / data1.cab / SDK_Files / C-lang / C.L1 / CDP.H < prev    next >
C/C++ Source or Header  |  1999-06-09  |  513b  |  18 lines

  1. /****************************************************************************/
  2. /* (C) Janus Drozd, 1992, 93, 94, 95, 96, 97, 98, 99                        */
  3. /* Verze: 6.0 (32-bit)                                                      */
  4. /****************************************************************************/
  5. #ifndef __CDP_H__
  6. #define __CDP_H__
  7.  
  8. #define CDP_SIZE 5000
  9.  
  10. typedef struct cd_t
  11. { byte internal_data[CDP_SIZE];
  12. } cd_t;
  13.  
  14. typedef struct cd_t * cdp_t;
  15.  
  16. #endif  /* !def __CDP_H_ */
  17.  
  18.