home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / tema / SW602 / Winbase / data1.cab / SDK_Files / C-lang / C.L1 / CDP.H < prev    next >
Encoding:
C/C++ Source or Header  |  2000-03-16  |  513 b   |  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.