00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __BARRY_COMMON_H__
00023 #define __BARRY_COMMON_H__
00024
00025 #include "dll.h"
00026 #include <iostream>
00027
00028 #define VENDOR_RIM 0x0fca
00029 #define PRODUCT_RIM_BLACKBERRY 0x0001
00030 #define PRODUCT_RIM_PEARL_DUAL 0x0004
00031 #define PRODUCT_RIM_PEARL_8120 0x8004
00032 #define PRODUCT_RIM_PEARL 0x0006
00033
00034 #define BLACKBERRY_CONFIGURATION 1
00035 #define BLACKBERRY_DB_CLASS 0xff
00036
00037
00038
00039 #define BARRY_MIN_PASSWORD_TRIES 3
00040 #define BARRY_MIN_PASSWORD_TRIES_ASC "3"
00041
00042 namespace Barry {
00043
00044
00045 BXEXPORT void Init(bool data_dump_mode = false, std::ostream *logStream = &std::cout);
00046
00047 }
00048
00049 #endif
00050