home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dokpr1.zip / feed.h < prev    next >
C/C++ Source or Header  |  1995-06-28  |  2KB  |  67 lines

  1. /**************************************************************************
  2.  *                                                                        *
  3.  *                                                                        *
  4.  *          This code is copyright (c) 1994                               *
  5.  *                     Athena Design, Inc.                                *
  6.  *                     and David Pollak                                   *
  7.  *                                                                        *
  8.  *                ALL RIGHTS RESERVED                                     *
  9.  *                                                                        *
  10.  *                                                                        *
  11.  *                                                                        *
  12.  *                                                                        *
  13.  *                                                                        *
  14.  **************************************************************************/
  15.  
  16.  
  17. #ifndef M2_feed_h_
  18.  
  19. #define M2_feed_h_
  20.  
  21. #ifdef M2Z
  22.  
  23. #define INCL_ERRORS
  24. #define INCL_DOS
  25.  
  26. #include <os2.h>
  27.  
  28. #ifdef __cplusplus
  29. extern "C"
  30. {
  31. #endif
  32.  
  33. extern int _System getRTFValue(char *, char *,double *);
  34. extern int _System setRTFValue(char *, char *,double);
  35. extern int _System RTFVersion();
  36. extern void _System getRTFTime(DATETIME *);
  37.  
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41.  
  42. // ifdef M2Z
  43. #elif defined(M2MAC)
  44.  
  45. #ifdef __cplusplus
  46. extern "C"
  47. {
  48. #endif
  49.  
  50. extern int  getRTFValue(char *, char *,double *);
  51. extern int  setRTFValue(char *, char *,double);
  52. extern int  RTFVersion();
  53. // FIXME extern void getRTFTime(DATETIME *);
  54.  
  55. #ifdef __cplusplus
  56. }
  57. #endif
  58.  
  59.  
  60. // elif M2MAC
  61. #endif
  62.  
  63. // ifndef M2_feed_h_
  64.  
  65. #endif
  66.  
  67.