1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

added use teminal attribute

This commit is contained in:
David Inglis 2004-11-16 21:15:31 +00:00
parent 659d2c4384
commit b8b99d5287

View file

@ -68,6 +68,12 @@ public interface ICDTLaunchConfigurationConstants {
*/
public static final String ATTR_PLATFORM = CDT_LAUNCH_ID + ".PLATFFORM"; //$NON-NLS-1$
/**
* Launch configuration attribute key. The value is a boolean specifiying whether
* to connect a terminal to the processed stdin/stdout
*/
public static final String ATTR_USE_TERMINAL = CDT_LAUNCH_ID + ".use_terminal";
/**
* Launch configuration attribute key. The value is the debugger id used
* when launching a C/C++ application for debug.
@ -225,4 +231,5 @@ public interface ICDTLaunchConfigurationConstants {
* Status code indicating an unexpected internal error.
*/
public static final int ERR_INTERNAL_ERROR = 150;
}