home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_GEN / FACETV.ZIP / CNSCREEN.H < prev    next >
C/C++ Source or Header  |  1993-12-09  |  886b  |  36 lines

  1. /************************************************************************
  2. **
  3. ** @(#)cnscreen.h    11/18/93    Chris Ahlstrom
  4. **
  5. **  ----------------------------------
  6. **  73340.26@compuserve.com
  7. **  ----------------------------------
  8. **
  9. **    C/C++ version
  10. **
  11. **    A C-interface for displaying messages to a dumb-terminal
  12. ** window.  Allows C modules to access this C++ window stuff.
  13. **
  14. *************************************************************************/
  15.  
  16. #if !defined(CNSCREEN_h)                /* { CNSCREEN_h    */
  17. #define CNSCREEN_h
  18.  
  19.  
  20. #define screenmsg(a, b, c)    cnScreenmsg((a), (b), (c))
  21.  
  22. extern
  23.  
  24. #ifdef __cplusplus                /* { __cplusplus    */
  25. "C"
  26. #endif                        /* } __cplusplus    */
  27.  
  28. int cnScreenmsg
  29. (
  30.     int use_io,                /* whether to ignore output    */
  31.     void *handle,            /* bogus for now        */
  32.     char *string            /* string to display        */
  33. );
  34.  
  35. #endif                            /* } CNSCREEN_h    */
  36.