home *** CD-ROM | disk | FTP | other *** search
/ CD-X 1 / cdx_01.iso / demodisc / basq / dualmodp / dsmidef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-08  |  649 b   |  31 lines

  1. // ************************************************************************
  2. // *
  3. // *    File        : DSMIDEF.H
  4. // *
  5. // *    Description : Common definitions for DSMI
  6. // *
  7. // *    Copyright (C) 1993,1994 Otto Chrons
  8. // *
  9. // ************************************************************************
  10.  
  11. #ifndef __DSMIDEF_H
  12. #define __DSMIDEF_H
  13.  
  14. typedef unsigned char uchar;
  15. typedef unsigned short ushort;
  16. typedef unsigned long ulong;
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. void* cdecl D_malloc(ulong size);
  23. void* cdecl D_calloc(ulong count, ulong size);
  24. void  cdecl D_free(void *ptr);
  25.  
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29.  
  30. #endif
  31.