1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-18 13:54:11 +03:00
Files
mariadb-columnstore-engine/include/messageFormat.h
2019-01-17 10:34:19 -06:00

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