home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / include / wx / unix / utilsx11.h < prev   
C/C++ Source or Header  |  2002-03-26  |  916b  |  34 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        wx/unix/utilsx11.h
  3. // Purpose:     Miscellaneous X11 functions
  4. // Author:      Mattia Barbon
  5. // Modified by:
  6. // Created:     25.03.02
  7. // RCS-ID:      $Id: utilsx11.h,v 1.1 2002/03/26 21:54:05 MBN Exp $
  8. // Copyright:   (c) wxWindows team
  9. // Licence:     wxWindows license
  10. /////////////////////////////////////////////////////////////////////////////
  11.  
  12. #ifndef _WX_UNIX_UTILSX11_H_
  13. #define _WX_UNIX_UTILSX11_H_
  14.  
  15. #include "wx/defs.h"
  16.  
  17. #if defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXX11__)
  18.  
  19. #if defined(__WXGTK__)
  20. typedef void WXDisplay;
  21. typedef void* WXWindow;
  22. #endif
  23.  
  24. class wxIconBundle;
  25.  
  26. void wxSetIconsX11( WXDisplay* display, WXWindow window,
  27.                     const wxIconBundle& ib );
  28.  
  29. #endif
  30.     // __WXMOTIF__, __WXGTK__, __WXX11__
  31.  
  32. #endif
  33.     // _WX_UNIX_UTILSX11_H_
  34.