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.

54 lines
1.2 KiB

  1. page ,132
  2. if 0
  3. /*++
  4. Copyright (c) 1991 Microsoft Corporation
  5. Module Name:
  6. int5c.inc
  7. Abstract:
  8. This module contains the int 5c/Netbios equates
  9. Author:
  10. Colin Watson (colinw) 5-Dec-1991
  11. Environment:
  12. Dos mode only
  13. Revision History:
  14. 05-Dec-1991 colinw
  15. Created
  16. --*/
  17. endif
  18. ;
  19. ; Network Control Block
  20. ;
  21. NCBNAMSZ equ 16
  22. ncb struc
  23. ncb_command db ? ; command code
  24. ncb_retcode db ? ; return code
  25. ncb_lsn db ? ; local session number
  26. ncb_num db ? ; number of our network name
  27. ncb_buffer dd ? ; address of message buffer
  28. ncb_length dw ? ; size of message buffer
  29. ncb_callname db NCBNAMSZ dup (?) ; blank-padded name of remote
  30. ncb_name db NCBNAMSZ dup (?) ; our blank-padded netname
  31. ncb_rto db ? ; rcv timeout/retry count
  32. ncb_sto db ? ; send timeout/sys timeout
  33. ncb_post dd ? ; Async notification handle
  34. ncb_lana_num db ? ; lana (adapter) number
  35. ncb_cmd_cplt db ? ; 0xff => commmand pending
  36. ncb_reserve db 14 dup (?) ; reserved, used by BIOS
  37. ncb ends