00001 #ifndef MONITOR_WIN_H_ 00002 # define MONITOR_WIN_H_ 00003 00004 typedef unsigned char bits8; 00005 00006 # include "libport/windows.hh" 00007 00008 class Monitor 00009 { 00010 00011 public: 00012 Monitor(int, int, const char * name=NULL); 00013 ~Monitor(); 00014 00015 int setImage(bits8*, int); 00016 00017 private: 00018 int w, h; 00019 HWND window; 00020 }; 00021 #endif /* !MONITOR_WIN_H_ */