diff options
Diffstat (limited to 'ext/mysqlnd/mysqlnd_structs.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_structs.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/mysqlnd/mysqlnd_structs.h b/ext/mysqlnd/mysqlnd_structs.h index 36342706ca..05c5821694 100644 --- a/ext/mysqlnd/mysqlnd_structs.h +++ b/ext/mysqlnd/mysqlnd_structs.h @@ -1183,6 +1183,12 @@ typedef struct st_mysqlnd_string size_t l; } MYSQLND_STRING; +typedef struct st_mysqlnd_const_string +{ + const char *s; + size_t l; +} MYSQLND_CSTRING; + struct st_mysqlnd_plugin_header { @@ -1237,4 +1243,10 @@ struct st_mysqlnd_authentication_plugin }; +struct st_mysqlnd_protocol_command +{ + enum_func_status (*run)(void *cmd); + void (*free_command)(void * cmd); +}; + #endif /* MYSQLND_STRUCTS_H */ |