home *** CD-ROM | disk | FTP | other *** search
/ Xentax forum attachments archive / xentax.7z / 5036 / source.7z / x_dlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2011-12-13  |  500 b   |  11 lines

  1. #ifndef __XENTAX_DLG_H
  2. #define __XENTAX_DLG_H
  3.  
  4. void CenterDialog(HWND window, bool in_parent = true);
  5. BOOL BrowseDirectoryDialog(HWND parent, const char* caption, char* buffer);
  6. BOOL ColorDialog(HWND parent, COLORREF& color);
  7. BOOL OpenFileDialog(HWND parent, const char* filter, const char* title, const char* defext, char* filename, char* initdir = 0);
  8. BOOL SaveFileDialog(HWND parent, const char* filter, const char* title, const char* defext, char* filename, char* initdir = 0);
  9.  
  10. #endif
  11.