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.

81 lines
1.6 KiB

  1. page ,132
  2. ; SCCSID = @(#)tparse.asm 4.1 87/04/28
  3. ; SCCSID = @(#)tparse.asm 4.1 87/04/28
  4. TITLE COMMAND interface to SYSPARSE
  5. ;/*
  6. ; * Microsoft Confidential
  7. ; * Copyright (C) Microsoft Corporation 1991
  8. ; * All Rights Reserved.
  9. ; */
  10. .xlist
  11. .xcref
  12. include comsw.asm
  13. include comseg.asm ;an000;
  14. .list
  15. .cref
  16. TRANSPACE SEGMENT PUBLIC BYTE ;AN000;
  17. CmpxSW equ 0 ;AN000; do not check complex list
  18. KeySW equ 0 ;AN000; do not support keywords
  19. Val2SW equ 0 ;AN000; do not Support value definition 2
  20. IncSW equ 0 ;AN000; do not include psdata.inc
  21. QusSW equ 0 ;AN025; do not include quoted string
  22. LFEOLSW equ 0 ;AN044; do not use 0ah as line terminator
  23. .xlist
  24. .xcref
  25. include psdata.inc ;AN000;
  26. .list
  27. .cref
  28. TRANSPACE ENDS ;AN000;
  29. TRANCODE SEGMENT PUBLIC BYTE ;AN000;
  30. ASSUME CS:TRANGROUP,DS:NOTHING,ES:NOTHING,SS:NOTHING ;AN054;
  31. ; ****************************************************************
  32. ; *
  33. ; * ROUTINE: CMD_PARSE
  34. ; *
  35. ; * FUNCTION: Interface for transient COMMAND to invoke
  36. ; * SYSPARSE.
  37. ; *
  38. ; * INPUT: inputs to SYSPARSE
  39. ; *
  40. ; * OUTPUT: outputs from SYSPARSE
  41. ; *
  42. ; ****************************************************************
  43. public Cmd_parse ;AN000;
  44. .xlist
  45. .xcref
  46. INCLUDE parse.asm ;AN000;
  47. .list
  48. .cref
  49. Cmd_parse Proc near ;AN000;
  50. call sysparse ;AN000;
  51. ret ;AN000;
  52. Cmd_parse endp ;AN000;
  53. public Append_parse ;AN010;
  54. Append_parse Proc Far ;AN010;
  55. call sysparse ;AN010;
  56. ret ;AN010;
  57. Append_parse endp ;AN010;
  58. trancode ends ;AN000;
  59. end ;AN000;
  60.