home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / MacPerl 5.1.3 / Mac_Perl_513_src / MacPerl5 / MPConsole.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-21  |  707 b   |  32 lines  |  [TEXT/MPS ]

  1. /*********************************************************************
  2. Project    :    MacPerl            -    Standalone Perl
  3. File        :    MPConsole.cp    -    Console interface for GUSI
  4. Author    :    Matthias Neeracher
  5. Language    :    MPW C/C++
  6.  
  7. $Log: MPConsole.h,v $
  8. Revision 1.1  1994/02/27  23:02:58  neeri
  9. Initial revision
  10.  
  11. Revision 0.1  1993/08/14  00:00:00  neeri
  12. WIOSELECT
  13.  
  14. *********************************************************************/
  15.  
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19.  
  20. #include <GUSI.h>
  21.  
  22. #define WIOSELECT (('w'<<8)|0x00)    /* Put window to front */
  23.  
  24. void InitConsole();
  25. void CloseConsole(Ptr cookie);
  26. Boolean DoRawConsole(Ptr cookie, char theChar);
  27. int MPConsoleSpin(spin_msg msg, long arg);
  28.  
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32.