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