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.

48 lines
775 B

  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. rxchdev.h
  5. Abstract:
  6. Prototypes for down-level remoted RxNetCharDev routines
  7. Author:
  8. Richard Firth (rfirth) 28-May-1991
  9. Revision History:
  10. 28-May-1991 rfirth
  11. Created
  12. --*/
  13. NET_API_STATUS
  14. RxNetCharDevControl(
  15. IN LPTSTR ServerName,
  16. IN LPTSTR DeviceName,
  17. IN DWORD Opcode
  18. );
  19. NET_API_STATUS
  20. RxNetCharDevEnum(
  21. IN LPTSTR ServerName,
  22. IN DWORD Level,
  23. OUT LPBYTE* Buffer,
  24. IN DWORD PrefMaxLen,
  25. OUT LPDWORD EntriesRead,
  26. OUT LPDWORD EntriesLeft,
  27. IN OUT LPDWORD ResumeHandle OPTIONAL
  28. );
  29. NET_API_STATUS
  30. RxNetCharDevGetInfo(
  31. IN LPTSTR ServerName,
  32. IN LPTSTR DeviceName,
  33. IN DWORD Level,
  34. OUT LPBYTE* Buffer
  35. );