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.

65 lines
1.6 KiB

  1. #define PlayingBackLog() \
  2. (PlaybackLog.iStatus == iPMStatusPlaying)
  3. //==========================================================================//
  4. // Exported Functions //
  5. //==========================================================================//
  6. void PlaybackInitializeInstance (void) ;
  7. PLOGINDEXBLOCK FirstIndexBlock (PLOGHEADER pLogHeader) ;
  8. PVOID PlaybackSeek (long lFileOffset) ;
  9. PPERFDATA DataFromIndexPosition (PLOGPOSITION pLogPosition,
  10. LPTSTR lpszSystemName) ;
  11. INT OpenPlayback (LPTSTR lpszFilePath, LPTSTR lpszFileTitle) ;
  12. void CloseInputLog (HWND hWndParent) ;
  13. BOOL OpenInputLog (HWND hWndParent) ;
  14. PLOGINDEX PlaybackIndexN (int iIndex) ;
  15. PLOGINDEX IndexFromPosition (PLOGPOSITION pLogPosition) ;
  16. BOOL LogPositionN (int iIndex, PLOGPOSITION pLP) ;
  17. BOOL NextIndexPosition (IN OUT PLOGPOSITION pLogPosition,
  18. BOOL bCheckForNonDataIndexes) ;
  19. BOOL PlaybackLines (PPERFSYSTEM pSystemFirst,
  20. PLINE pLineFirst,
  21. int iLogTic) ;
  22. PPERFDATA LogDataFromPosition (PPERFSYSTEM pSystem,
  23. PLOGPOSITION pLogPosition) ;
  24. int PlaybackSelectedSeconds (void) ;
  25. BOOL LogPositionSystemTime (PLOGPOSITION pLP, SYSTEMTIME *pSystemTime) ;
  26. int LogPositionIntervalSeconds (PLOGPOSITION pLPStart,
  27. PLOGPOSITION pLPStop) ;
  28. BOOL NextReLogIndexPosition (IN OUT PLOGPOSITION pLogPosition) ;
  29. void BuildLogComputerList (HWND hDlg, int DlgID) ;
  30. LPWSTR *LogBuildNameTable(PPERFSYSTEM pSysInfo) ;
  31.