mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / storage / ndb / include / kernel / signaldata / ReadConfig.hpp
blobafbb8ae1fdf2452d4968d061d77d3e859a0df04d
1 /* Copyright (c) 2004-2006 MySQL AB
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; version 2 of the License.
7 This program is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 GNU General Public License for more details.
12 You should have received a copy of the GNU General Public License
13 along with this program; if not, write to the Free Software
14 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
16 #ifndef READ_CONFIG_HPP
17 #define READ_CONFIG_HPP
19 /**
21 class ReadConfigReq {
22 public:
23 STATIC_CONST( SignalLength = 3 );
25 Uint32 senderRef;
26 Uint32 senderData;
27 Uint32 noOfParameters; // 0 Means read all relevant for block
28 Uint32 parameters[1]; // see mgmapi_config_parameters.h
31 class ReadConfigConf {
32 public:
33 STATIC_CONST( SignalLength = 2 );
35 Uint32 senderRef;
36 Uint32 senderData;
39 #endif