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.

14 lines
578 B

  1. //--------------------------------------------------------------------
  2. // parser.h - sample header
  3. // Copyright (C) Microsoft Corporation, 2001
  4. //
  5. // Created by: Duncan Bryce (duncanb), 9-13-2001
  6. //
  7. // Code to parse the samples returned from hardware providers
  8. //
  9. void FreeParser(HANDLE hParser);
  10. DWORD GetSampleSize(HANDLE hParser);
  11. HRESULT MakeParser(LPWSTR pwszFormat, HANDLE *phParser);
  12. HRESULT ParseSample(HANDLE hParser, char *pcData, unsigned __int64 nSysCurrentTime, unsigned __int64 nSysPhaseOffset, unsigned __int64 nSysTickCount, TimeSample *pts);