home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / sos3-2.lha / src / psm / mon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-23  |  1.0 KB  |  32 lines

  1. /* --------------------------------------------------------------------------
  2.  * Copyright 1992 by Forschungszentrum Informatik (FZI)
  3.  *
  4.  * You can use and distribute this software under the terms of the licence
  5.  * you should have received along with this program.
  6.  * If not or if you want additional information, write to
  7.  * Forschungszentrum Informatik, "STONE", Haid-und-Neu-Strasse 10-14,
  8.  * D-7500 Karlsruhe 1, Germany.
  9.  * --------------------------------------------------------------------------
  10.  */
  11. /* monitor of persistent storage manager: header */
  12.  
  13. #ifndef MONH
  14. #define MONH 1
  15. #ifdef MONITOR
  16.  
  17. typedef unsigned mon_Window;
  18.  
  19. extern void mon_initialize  ();
  20.  
  21. extern mon_Window mon_create(int cid, int last);
  22. extern void mon_open (mon_Window w, int rw /*0=read, 1=write*/, char* title);
  23. extern void mon_close (mon_Window w);
  24. extern void mon_destroy (mon_Window w);
  25.  
  26. extern void mon_black (mon_Window w, int n);
  27. extern void mon_grey (mon_Window w, int n);
  28. extern void mon_white (mon_Window w, int n);
  29.  
  30. #endif MONITOR
  31. #endif MONH
  32.