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.

24 lines
1.1 KiB

  1. ;/*
  2. ; * Microsoft Confidential
  3. ; * Copyright (C) Microsoft Corporation 1991
  4. ; * All Rights Reserved.
  5. ; */
  6. ; SCCSID = @(#)fordata.asm 1.1 85/05/14
  7. ; SCCSID = @(#)fordata.asm 1.1 85/05/14
  8. ; Data structure definitions included by tfor.asm
  9. for_info STRUC
  10. for_args DB (SIZE arg_unit) DUP (?) ; argv[] structure
  11. FOR_COM_START DB (?) ; beginning of <command>
  12. FOR_EXPAND DW (?) ; * or ? item in <list>?
  13. FOR_MINARG DW (?) ; beginning of <list>
  14. FOR_MAXARG DW (?) ; end of <list>
  15. forbuf DW 64 DUP (?) ; temporary buffer
  16. fordma DW 64 DUP (?) ; FindFirst/Next buffer
  17. FOR_VAR DB (?) ; loop control variable
  18. for_info ENDS
  19. ; empty segment done for bogus addressing
  20. for_segment segment
  21. f LABEL BYTE
  22. for_segment ends
  23.