~ubuntu-branches/ubuntu/karmic/fltk1.1/karmic

« back to all changes in this revision

Viewing changes to FL/win32.H

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2005-05-22 13:57:06 UTC
  • mfrom: (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050522135706-mchag24yf42lu7bu
Tags: 1.1.6-5
* Revert previous change, which seems to have been ineffective for some
  reason, in favor of commenting out the problematic Makefile rule
  altogether.  (Closes: #310151.)
* debian/control: Go back to specifying the URL as part of the
  description rather than via a non-standard field that doesn't seem to
  have caught on.  (Closes: #310240.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//
2
 
// "$Id: win32.H,v 1.15.2.3.2.12 2004/04/11 04:38:55 easysw Exp $"
 
2
// "$Id: win32.H,v 1.15.2.3.2.13 2004/11/20 03:19:57 easysw Exp $"
3
3
//
4
4
// WIN32 header file for the Fast Light Tool Kit (FLTK).
5
5
//
88
88
};
89
89
extern FL_EXPORT HCURSOR fl_default_cursor;
90
90
extern FL_EXPORT UINT fl_wake_msg;
91
 
inline Window fl_xid(const Fl_Window*w) {return Fl_X::i(w)->xid;}
 
91
inline Window fl_xid(const Fl_Window*w) {Fl_X *temp = Fl_X::i(w); return temp ? temp->xid : 0;}
92
92
FL_EXPORT Fl_Window* fl_find(Window xid);
93
93
extern FL_EXPORT char fl_override_redirect; // hack into Fl_Window::make_xid()
94
94
extern FL_EXPORT int fl_background_pixel;  // hack into Fl_Window::make_xid()
138
138
extern FL_EXPORT int fl_parse_color(const char* p, uchar& r, uchar& g, uchar& b);
139
139
 
140
140
//
141
 
// End of "$Id: win32.H,v 1.15.2.3.2.12 2004/04/11 04:38:55 easysw Exp $".
 
141
// End of "$Id: win32.H,v 1.15.2.3.2.13 2004/11/20 03:19:57 easysw Exp $".
142
142
//