home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / extras / smfind / smcomm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-24  |  863 b   |  18 lines

  1. /*-------------------------------------------------------------------*/
  2. /* Copyright (c) 1993 SAS Institute, Inc.  All Rights Reserved.      */
  3. /* Author: Doug Walker                                               */
  4. /* Support: walker                                                   */
  5. /*-------------------------------------------------------------------*/
  6. #include <rexx/rxslib.h>
  7. #include <exec/ports.h>
  8.  
  9. /* AddSCMSG: Add a new message to the SCMSG list.                   */
  10. /*    'group' specifies the message group (compilation unit)        */
  11. /*    'file' and 'line' are the associated filename and line number */
  12. /*    'msg' is the message text                                     */
  13. int AddSCMSG(char *group, char *file, int line, char *msg);
  14.  
  15. /* ClearSCMSG: Clear all messages in the SCMSG list in the specified group */
  16. int ClearSCMSG(char *group);
  17.  
  18.