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.

45 lines
659 B

  1. /*++
  2. Copyright (c) 1993 Microsoft Corporation
  3. Module Name:
  4. nwxchg.h
  5. Abstract:
  6. Header for generic NCP calling routine.
  7. Author:
  8. Rita Wong (ritaw) 11-Mar-1993
  9. Environment:
  10. Revision History:
  11. --*/
  12. #ifndef _NW_XCHG_INCLUDED_
  13. #define _NW_XCHG_INCLUDED_
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif /* __cplusplus */
  17. NTSTATUS
  18. NwlibMakeNcp(
  19. IN HANDLE DeviceHandle,
  20. IN ULONG FsControlCode,
  21. IN ULONG RequestBufferSize,
  22. IN ULONG ResponseBufferSize,
  23. IN PCHAR FormatString,
  24. ... // Arguments to FormatString
  25. );
  26. #ifdef __cplusplus
  27. }
  28. #endif /* __cplusplus */
  29. #endif // _NW_XCHG_INCLUDED_