mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Added file(s)
This commit is contained in:
24
ndb/include/kernel/signaldata/ReadConfig.hpp
Normal file
24
ndb/include/kernel/signaldata/ReadConfig.hpp
Normal file
@ -0,0 +1,24 @@
|
||||
#ifndef READ_CONFIG_HPP
|
||||
#define READ_CONFIG_HPP
|
||||
|
||||
/**
|
||||
*/
|
||||
class ReadConfigReq {
|
||||
public:
|
||||
STATIC_CONST( SignalLength = 3 );
|
||||
|
||||
Uint32 senderRef;
|
||||
Uint32 senderData;
|
||||
Uint32 noOfParameters; // 0 Means read all relevant for block
|
||||
Uint32 parameters[1]; // see mgmapi_config_parameters.h
|
||||
};
|
||||
|
||||
class ReadConfigConf {
|
||||
public:
|
||||
STATIC_CONST( SignalLength = 2 );
|
||||
|
||||
Uint32 senderRef;
|
||||
Uint32 senderData;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user