home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / WIN_UTL2 / VULCAN.ZIP / VULSRC.ZIP / CANCEL.HPP < prev    next >
C/C++ Source or Header  |  1994-02-08  |  683b  |  15 lines

  1. // CANCEL.HPP Part of VULCAN
  2. // Copyright (c) 1993 John Deurbrouck
  3. // must include windows.h before this file
  4. // must include vulcan.hpp in modules using this file
  5. // must include browse.hpp in modules using this file
  6. extern void start_cancel_dialog_box(void);
  7. extern int check_cancel_dialog_box(void);
  8. extern void set_cancel_dialog_box_text(LPSTR verb,LPSTR object);
  9. extern void end_cancel_dialog_box(void);
  10. extern HWND hCancelDlg;
  11. // next macro picks out right current window handle for MessageBox()
  12. #define CURR_WINDOW (hCancelDlg==NULL?\
  13.     (hBrowseDlg==NULL?hMainWindow:hBrowseDlg):hCancelDlg)
  14. #define CURR_CANCEL_WINDOW (hBrowseDlg==NULL?hMainWindow:hBrowseDlg)
  15.