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.

37 lines
646 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. datasrc.h
  5. Abstract:
  6. <abstract>
  7. --*/
  8. #ifndef _DATASRC_H_
  9. #define _DATASRC_H_
  10. typedef struct _PDHI_DATA_SOURCE_INFO {
  11. DWORD dwFlags;
  12. LPWSTR szDataSourceFile;
  13. DWORD cchBufferLength;
  14. } PDHI_DATA_SOURCE_INFO, *PPDHI_DATA_SOURCE_INFO;
  15. #define PDHI_DATA_SOURCE_CURRENT_ACTIVITY 0x00000001
  16. #define PDHI_DATA_SOURCE_LOG_FILE 0x00000002
  17. #define PDHI_DATA_SOURCE_WBEM_NAMESPACE 0x00000004
  18. INT_PTR
  19. CALLBACK
  20. DataSrcDlgProc (
  21. IN HWND hDlg,
  22. IN UINT message,
  23. IN WPARAM wParam,
  24. IN LPARAM lParam
  25. );
  26. #endif //_DATASRC_H_