common.h

Go to the documentation of this file.
00001 ///
00002 /// \file       common.h
00003 ///             General header for the Barry library
00004 ///
00005 
00006 /*
00007     Copyright (C) 2005-2010, Net Direct Inc. (http://www.netdirect.ca/)
00008 
00009     This program is free software; you can redistribute it and/or modify
00010     it under the terms of the GNU General Public License as published by
00011     the Free Software Foundation; either version 2 of the License, or
00012     (at your option) any later version.
00013 
00014     This program is distributed in the hope that it will be useful,
00015     but WITHOUT ANY WARRANTY; without even the implied warranty of
00016     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
00017 
00018     See the GNU General Public License in the COPYING file at the
00019     root directory of this project for more details.
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_FLIP  0x8001          // 8200 series
00032 #define PRODUCT_RIM_PEARL_8120  0x8004
00033 #define PRODUCT_RIM_PEARL       0x0006
00034 #define PRODUCT_RIM_STORM       0x8007
00035 
00036 #define BLACKBERRY_INTERFACE            0
00037 #define BLACKBERRY_CONFIGURATION        1
00038 #define BLACKBERRY_DB_CLASS             0xff
00039 
00040 #define IPRODUCT_RIM_HANDHELD           2
00041 #define IPRODUCT_RIM_MASS_STORAGE       4
00042 #define IPRODUCT_RIM_COMPOSITE          5
00043 
00044 // minimum number of password tries remaining at which Barry gives up
00045 // for safety
00046 #define BARRY_MIN_PASSWORD_TRIES        3
00047 #define BARRY_MIN_PASSWORD_TRIES_ASC    "3"
00048 
00049 #define BLACKBERRY_CHARSET "WINDOWS-1252"
00050 
00051 namespace Barry {
00052 
00053 /// See also the LogLock class.
00054 BXEXPORT void Init(bool data_dump_mode = false, std::ostream *logStream = &std::cout);
00055 BXEXPORT void Verbose(bool data_dump_mode = true);
00056 BXEXPORT bool IsVerbose();
00057 
00058 } // namespace Barry
00059 
00060 #endif
00061 
Generated by  doxygen 1.6.2-20100208