Added Support for DB2 Reader. Thanks to all Authors

NOTE: extractor need fix/update.
      support for VC80/VC90
      cmake need update

Signed-off-by: Salja <salja2012@hotmail.de>
This commit is contained in:
Salja 2012-08-01 21:19:46 +02:00 committed by Antz
parent a6f3ca6ab0
commit 5424aed420
19 changed files with 994 additions and 13 deletions

View file

@ -127,4 +127,19 @@ typedef uint32 DWORD;
typedef uint64 OBJECT_HANDLE;
enum
{
FT_NA = 'x', // ignore/ default, 4 byte size, in Source String means field is ignored, in Dest String means field is filled with default value
FT_NA_BYTE = 'X', // ignore/ default, 1 byte size, see above
FT_NA_FLOAT = 'F', // ignore/ default, float size, see above
FT_NA_POINTER = 'p', // fill default value into dest, pointer size, Use this only with static data (otherwise mem-leak)
FT_STRING = 's', // char*
FT_FLOAT = 'f', // float
FT_INT = 'i', // uint32
FT_BYTE = 'b', // uint8
FT_SORT = 'd', // sorted by this field, field is not included
FT_IND = 'n', // the same,but parsed to data
FT_LOGIC = 'l' // Logical (boolean)
};
#endif // MANGOS_DEFINE_H