home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume21 / notes / part01 / notes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-20  |  341 b   |  22 lines

  1. /*
  2.  * notes.h
  3.  *
  4.  * notes - by Bob Smith <bob@snuffy.dracut.ma.us>
  5.  */
  6.  
  7. #include "patchlevel.h"
  8.  
  9. #ifndef TRUE
  10. # define TRUE 1
  11. #endif
  12. #ifndef FALSE
  13. # define FALSE 0
  14. #endif
  15.  
  16. #define NOTEFILE ".notes"
  17.  
  18. #define XtGrandParent(w) XtParent(XtParent(w))
  19.  
  20. #define AddCallback(w, callback, closure) \
  21.     XtAddCallback(w, XtNcallback, callback, closure)
  22.