~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/common.h

Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
** Common definition between mysql server & client
22
22
*/
23
23
 
24
 
#ifndef DRIZZLED_COMMON_H
25
 
#define DRIZZLED_COMMON_H
 
24
#pragma once
26
25
 
27
26
#include <unistd.h>
28
27
#include <stdint.h>
172
171
  COM_SHUTDOWN,
173
172
  COM_CONNECT,
174
173
  COM_PING,
 
174
  COM_KILL,
175
175
  /* don't forget to update const char *command_name[] in sql_parse.cc */
176
176
  /* Must be last */
177
177
  COM_END
201
201
 
202
202
#endif /* defined(__cplusplus) */
203
203
 
204
 
#endif /* DRIZZLED_COMMON_H */