home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / libraries / PB-API.0.1.README < prev    next >
Encoding:
Text File  |  1996-06-10  |  1.7 KB  |  41 lines

  1. README PB-API 0.1 -- June 1996.
  2.  
  3. This project builds a small library containing a single function named
  4. make_support, that can be used by compiler tools to communicate with
  5. ProjectBuilder.  Basically I just took the relevant files from the cc
  6. sources in GNUSource.pkg and organized this library project around it.
  7.  
  8. Here is the relevant section of Raf Schietekat's KBNS.33.2.029 that
  9. relates to communication with PB:
  10.  
  11. [...] add calls to make_support() with arguments as follows
  12. (don't bother to declare make_support first):
  13.   int type;   // boolean: 0 for error, 1 for warning
  14.   char *name; // the function name, used in the display on the right
  15.           // NULL if unknown
  16.   char *file; // the file in italics, used to group things together
  17.               // and to open that file when the item is clicked;
  18.           // should be just the file name itself, not a path
  19.   int line;   // the line number, used when opening the file in Edit
  20.               // lines numbered from 1 onwards
  21.   char *msg;  // a format as for printf and friends, used for the message body
  22.   int arg1;   // further argument filling in this format (if required)
  23.   int arg2;   //   ... these can be pointers
  24.   int arg3;   //   ...
  25.  
  26. [TRH addition: 
  27.   type -1 displays "<msg> <name>" in Builder's title field
  28.   (above the Target: popup.)
  29. ]
  30.  
  31. Also enclosed are patches to make the latest versions of Bison and Flex
  32. ProjectBuilder aware.  After applying the relevant patch to the bison or
  33. flex sources, you should run autoconf and autoheader to regenerate
  34. configure and config.h.  Also make sure you've installed libPBapi.a
  35. (created by this project) in /usr/local/lib before you re-configure.
  36.  
  37.  
  38. Enjoy!
  39.  
  40. Tom Hageman <tom@basil.icce.rug.nl>.
  41.