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.

50 lines
812 B

  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. winsi2.idl
  5. Abstract:
  6. Contains the WINS Server Service API.
  7. Also contains the RPC specific data structures for these API.
  8. Author:
  9. Munil Shah
  10. Environment:
  11. User Mode - Win32 - MIDL
  12. Revision History:
  13. --*/
  14. [
  15. uuid(811109bf-a4e1-11d1-ab54-00a0c91e9b45),
  16. version(1.0),
  17. pointer_default(unique)
  18. ]
  19. interface winsi2
  20. {
  21. import "winsimp.idl";
  22. typedef handle_t WINSIF2_HANDLE;
  23. DWORD
  24. R_WinsTombstoneDbRecs(
  25. [in] WINSIF2_HANDLE ServerHdl,
  26. [in, ref] PWINSINTF_ADD_T pWinsAdd,
  27. [in] WINSINTF_VERS_NO_T MinVersNo,
  28. [in] WINSINTF_VERS_NO_T MaxVersNo
  29. );
  30. DWORD
  31. R_WinsCheckAccess(
  32. [in] WINSIF2_HANDLE ServerHdl,
  33. [out] DWORD *Access
  34. );
  35. }