enum EnAppClass // Class of Application
/* Defines the application class */
{
kUnknwnAppClass = 0, // Undefined
kCStandardAppClass = 1, // Standard C Program (unsupported)
kArCuiAppClass = 14, // AR CUI C++ Program (unsupported)
kArGuiAppClass = 15 // AR GUI C++ Program
};
enum EnBmExcType // Batch Execution Type
{
kBmExcNull = 0,
kBmExcDirect = 'D', // Direct Execution
kBmExcLocal = 'L', // Local, controlled by arbmexc.exe
kBmExcRemote = 'R' // Remote, shceduled by arbmsch.exe
};
kondefine EnArPgmType // Ar Programmer Type
{
#define kArPgmNull 0 // Non definito
#define kArPgmIdiot 'I' // Idiota
#define kArPgmAverage 'A' // Normale
#define kArPgmSmart 'S' // Furbo
};
|