Source code of Windows XP (NT5)
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.

77 lines
1.3 KiB

  1. #define iDefaultAlertIntervalSecs 5
  2. #if 0
  3. PALERT AlertData (HWND hWndAlert) ;
  4. #endif
  5. #define AlertData(hWndAlert) \
  6. (&Alert)
  7. BOOL AlertInitializeApplication (void) ;
  8. void ClearAlertDisplay (HWND hWnd) ;
  9. HWND CreateAlertWindow (HWND hWndParent) ;
  10. void UpdateAlertDisplay (HWND hWnd) ;
  11. BOOL AlertInsertLine (HWND hWnd, PLINE pLine) ;
  12. BOOL AlertDeleteLine (HWND hWnd, PLINE pLine) ;
  13. void SizeAlertComponents (HWND hDlg) ;
  14. INT PlaybackAlert (HWND hWndAlert, HANDLE hExportFile) ;
  15. #if 0
  16. PLINESTRUCT CurrentAlertLine (HWND hWndAlert) ;
  17. #endif
  18. #define CurrentAlertLine(hWndAlert) \
  19. (LegendCurrentLine (hWndAlertLegend))
  20. BOOL AddAlert (HWND hWndParent) ;
  21. BOOL EditAlert (HWND hWndParent) ;
  22. BOOL AlertRefresh (HWND hWnd) ;
  23. BOOL ToggleAlertRefresh (HWND hWnd) ;
  24. void AlertTimer (HWND hWnd, BOOL bForce) ;
  25. BOOL SetAlertTimer (PALERT pAlert) ;
  26. BOOL OpenAlert (HWND hWndAlert,
  27. HANDLE hFile,
  28. DWORD dwMajorVersion,
  29. DWORD dwMinorVersion,
  30. BOOL bAlertFile) ;
  31. void ResetAlert (HWND hWndAlert) ;
  32. void ResetAlertView (HWND hWndAlert) ;
  33. BOOL SaveAlert (HWND hWndAlert, HANDLE hInputFile, BOOL bGetFileName) ;
  34. void ExportAlert (void) ;
  35. void AlertAddAction (void) ;
  36. void AlertCreateThread (PALERT pAlert) ;
  37.