Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

  1. // about.h
  2. //**********************************************************************
  3. // About dialog management
  4. //**********************************************************************
  5. //
  6. // Modal dialog box procedure
  7. //
  8. INT_PTR CALLBACK AboutDlgProc(HWND hDlg, UINT message,
  9. WPARAM wParam, LPARAM lParam);
  10. //
  11. // Startup procedure for modal dialog box
  12. //
  13. INT_PTR AboutDlgFunc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  14. BOOL AboutDlgDefault(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
  15. //**********************************************************************
  16. // Initial Warning Message dialog management
  17. //**********************************************************************
  18. //
  19. // Modal dialog box procedure
  20. //
  21. INT_PTR CALLBACK WarningMsgDlgProc(HWND hDlg, UINT message,
  22. WPARAM wParam, LPARAM lParam);
  23. //
  24. // Startup procedure for modal dialog box
  25. //
  26. INT_PTR WarningMsgDlgFunc(HWND hWnd);
  27. BOOL WarningMsgDlgDefault(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);