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.

22 lines
656 B

  1. ;/*
  2. ; * Microsoft Confidential
  3. ; * Copyright (C) Microsoft Corporation 1991
  4. ; * All Rights Reserved.
  5. ; */
  6. ; SCCSID = @(#)envdata.asm 1.1 85/05/14
  7. ; SCCSID = @(#)envdata.asm 1.1 85/05/14
  8. ; This file is included by command.asm and is used as the default command
  9. ; environment.
  10. Environment Struc ; Default COMMAND environment
  11. Env_PathString db "path="
  12. db 0 ; Null path
  13. Env_Comstring db "comspec="
  14. Env_Ecomspec db "\command.com" ;AC062
  15. db 134 dup (0)
  16. Environment ends
  17. ENVIRONSIZ equ SIZE Environment
  18. ENVIRONSIZ2 equ SIZE Environment - Env_Ecomspec
  19.