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.

31 lines
671 B

  1. #ifndef _MPRFLTR_H_
  2. #define _MPRFLTR_H_
  3. #ifdef _cplusplus
  4. extern "C" {
  5. #endif
  6. #define FILTER_INBOUND 0
  7. #define FILTER_OUTBOUND 1
  8. #define FILTER_DEMAND_DIAL 2
  9. #define FILTER_PERUSER_IN 3
  10. #define FILTER_PERUSER_OUT 4
  11. // to make them easier to understand, define the alias for IN, OUT filters
  12. #define FILTER_TO_USER FILTER_PERUSER_IN
  13. #define FILTER_FROM_USER FILTER_PERUSER_OUT
  14. HRESULT APIENTRY
  15. MprUIFilterConfigInfoBase(
  16. IN HWND hwndParent,
  17. IN IInfoBase * pInfoBase,
  18. IN IRtrMgrInterfaceInfo *pRmIf,
  19. IN DWORD dwTransportId,
  20. IN DWORD dwFilterType // see above
  21. );
  22. #ifdef _cplusplus
  23. };
  24. #endif
  25. #endif // _MPRFLTR_H_