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.
 
 
 
 
 
 

40 lines
879 B

/*++
Copyright (c) 1994-1998 Microsoft Corporation
Module Name:
pmvdm.h
Abstract:
This include file defines the interface between ProgMan and ntVDM
Author:
Revision History:
--*/
#ifndef _PMVDM_H_
#define _PMVDM_H_
// the progman has a special string passed down in lpReserved parameter to
// the CreateProcess API. The string has a format like:
// "dde.%d,hotkey.%d,ntvdm.%d,"
// the last substring(ntvdm.%d,)is for progman to inform ntvdm what properties
// the program(the process being created) has.
// the program has Working(Current) Directory property.
#define PROPERTY_HAS_CURDIR 0x01
// the program has Hotkey(Shortcut Key) property.
#define PROPERTY_HAS_HOTKEY 0x02
// the program has Description(Title) property
#define PROPERTY_HAS_TITLE 0x04
#endif // ifndef _PMVDM_H_