49 lines
1.3 KiB
C
49 lines
1.3 KiB
C
/*=========================================================================
|
|
* IPT_Def.h :
|
|
* Macro and defnition
|
|
*
|
|
* (c) Ubi Studios 1997
|
|
*=======================================================================*/
|
|
|
|
/******************************************/
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif /* _MSC_VER >= 1000 */
|
|
/******************************************/
|
|
|
|
#define IPT_C_FALSE 0
|
|
#define IPT_C_TRUE 1
|
|
|
|
#define IPT_C_InvalideDevice 0
|
|
#define IPT_C_ValideDevice 1
|
|
#define IPT_C_ActivateDevice 2
|
|
#define IPT_C_ActivatePadDevice 3
|
|
#define IPT_C_ActivateJoystickDevice 4
|
|
#define IPT_C_ActivateMouseDevice 5
|
|
|
|
#define IPT_C_ACP_HistoricSize 2
|
|
|
|
#define IPT_C_MaxLineCommand 78
|
|
#define IPT_C_MaxNumberOfParameters 10
|
|
#define IPT_C_NumberOfHistoricCommand 10
|
|
|
|
#define IPT_C_NoCommand 0
|
|
#define IPT_C_ValidCommand 1
|
|
#define IPT_C_QuitCommandMode 2
|
|
#define IPT_C_InvalidCommand -1
|
|
#define IPT_C_BadNumberOfParameters -2
|
|
|
|
/*#define IPT_C_AsciiBackSpace -1*/
|
|
/*#define IPT_C_AsciiEnter -2*/
|
|
|
|
#define IPT_C_Duplicate 0
|
|
#define IPT_C_Exchange 1
|
|
#define IPT_C_NoDuplicate 2
|
|
|
|
#define IPT_C_UnknownKeyBoardType 0
|
|
#define IPT_C_AZERTYKeyBoardType 1
|
|
#define IPT_C_QWERTYKeyBoardType 2
|
|
|
|
|
|
#define IPT_C_MaxNumberOfPad 16 /* See also in IPT_KDef.h */
|