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.

28 lines
699 B

  1. /*++ BUILD Version: 0001
  2. *
  3. * NTVDM v1.0
  4. *
  5. * Copyright (c) 2002, Microsoft Corporation
  6. *
  7. * vshim.h
  8. * Shim definitions common to WOW and NTVDM
  9. *
  10. * History:
  11. * Created 01-30-2002 by cmjones
  12. *
  13. --*/
  14. #define WOWCOMPATFLAGS 0
  15. #define WOWCOMPATFLAGSEX 1
  16. #define USERWOWCOMPATFLAGS 2
  17. #define WOWCOMPATFLAGS2 3
  18. #define WOWCOMPATFLAGSFE 4
  19. #define MAX_INFO 32 // max # of command line params for flag info
  20. typedef struct _FLAGINFOBITS {
  21. struct _FLAGINFOBITS *pNextFlagInfoBits;
  22. DWORD dwFlag;
  23. DWORD dwFlagType;
  24. LPSTR pszCmdLine;
  25. DWORD dwFlagArgc;
  26. LPSTR *pFlagArgv;
  27. } FLAGINFOBITS, *PFLAGINFOBITS;