You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-17 01:02:23 +03:00
24 lines
308 B
C++
24 lines
308 B
C++
// Eventually this will define stuff client code will use to
|
|
// construct messages to StorageManager.
|
|
|
|
#ifndef MESSAGEFORMAT_H_
|
|
#define MESSAGEFORMAT_H_
|
|
|
|
namespace storagemanager
|
|
{
|
|
|
|
static const uint SM_MSG_START=0xbf65a7e1;
|
|
|
|
enum Opcodes {
|
|
OPEN,
|
|
READ,
|
|
WRITE,
|
|
STAT,
|
|
UNLINK
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|