##// END OF EJS Templates
Fixed InteractiveListener to support OLE and clipboard....
Fixed InteractiveListener to support OLE and clipboard. Safe.Dispose methods made more convinent

File last commit:

r209:a867536c68fc v2
r215:fe5101083150 v2
Show More
ExecutionState.cs
29 lines | 335 B | text/x-csharp | CSharpLexer
namespace Implab.Components {
public enum ExecutionState {
Undefined = 0,
Created,
Initializing,
Ready,
Starting,
Running,
Suspending,
Suspended,
Resuming,
Stopping,
Failed,
Disposed,
Last = Disposed
}
}