Source code of Windows XP (NT5)
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.

40 lines
839 B

  1. /*++
  2. Copyright (c) 1994-1998 Microsoft Corporation
  3. Module Name:
  4. pmvdm.h
  5. Abstract:
  6. This include file defines the interface between ProgMan and ntVDM
  7. Author:
  8. Revision History:
  9. --*/
  10. #ifndef _PMVDM_H_
  11. #define _PMVDM_H_
  12. // the progman has a special string passed down in lpReserved parameter to
  13. // the CreateProcess API. The string has a format like:
  14. // "dde.%d,hotkey.%d,ntvdm.%d,"
  15. // the last substring(ntvdm.%d,)is for progman to inform ntvdm what properties
  16. // the program(the process being created) has.
  17. // the program has Working(Current) Directory property.
  18. #define PROPERTY_HAS_CURDIR 0x01
  19. // the program has Hotkey(Shortcut Key) property.
  20. #define PROPERTY_HAS_HOTKEY 0x02
  21. // the program has Description(Title) property
  22. #define PROPERTY_HAS_TITLE 0x04
  23. #endif // ifndef _PMVDM_H_