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.
|
|
/*++
Copyright (C) 1996-1999 Microsoft Corporation
Module Name:
browser.h
Abstract:
Header file for the sysmon.ocx interaction with Pdh browse counters dialog.
--*/
#ifndef _BROWSER_H_
#define _BROWSER_H_
#define BROWSE_WILDCARD 1
typedef HRESULT (*ENUMPATH_CALLBACK)(LPWSTR pszPath, DWORD_PTR lpUserData, DWORD dwFlags);
extern HRESULT BrowseCounters ( IN HLOG hDataSource, IN DWORD dwDetailLevel, IN HWND hwndOwner, IN ENUMPATH_CALLBACK pCallback, IN LPVOID lpUserData, IN BOOL bUseInstanceIndex );
extern HRESULT EnumExpandedPath ( HLOG hDataSource, LPWSTR pszCtrPath, ENUMPATH_CALLBACK pCallback, LPVOID lpUserData );
#endif
|