home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2006 April / DPPRO0406DVD.ISO / Essentials / Programming / Notepad2 / Source / NP2SRC.ZIP / Dialogs.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-06-25  |  1.3 KB  |  49 lines

  1. /******************************************************************************
  2. *
  3. *
  4. * Notepad2
  5. *
  6. * Dialogs.h
  7. *   Definitions for Notepad2 dialog boxes
  8. *
  9. * See Readme.txt for more information about this source code.
  10. * Please send me your comments to this work.
  11. *
  12. * Distributed under the terms of the GNU General Public License,
  13. * see License.txt for details.
  14. *
  15. *                                              (c) Florian Balmer 1996-2004
  16. *                                                       textview@bluewin.ch
  17. *                                               http://www.flos-freeware.ch
  18. *
  19. *
  20. ******************************************************************************/
  21.  
  22.  
  23. #define MBINFO         0
  24. #define MBWARN         1
  25. #define MBYESNO        2
  26. #define MBYESNOWARN    3
  27. #define MBYESNOCANCEL  4
  28.  
  29. int MsgBox(int,UINT,...);
  30.  
  31. void DisplayCmdLineHelp();
  32.  
  33. BOOL GetDirectory(HWND,int,LPSTR,LPCSTR,BOOL);
  34.  
  35. BOOL CALLBACK AboutDlgProc(HWND,UINT,WPARAM,LPARAM);
  36.  
  37. void RunDlg(HWND,LPCSTR);
  38. BOOL OpenWithDlg(HWND,LPCSTR);
  39. BOOL FavoritesDlg(HWND,LPSTR);
  40. BOOL AddToFavDlg(HWND,LPCSTR,LPCSTR);
  41. BOOL FileMRUDlg(HWND,LPSTR);
  42. BOOL WordWrapSettingsDlg(HWND,UINT,int *);
  43. BOOL LongLineSettingsDlg(HWND,UINT,int *);
  44. BOOL TabSettingsDlg(HWND,UINT,int *);
  45. BOOL SelectOptionDlg(HWND,UINT,int *);
  46.  
  47.  
  48. // End of Dialogs.h
  49.