- Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathmysqlnd_result.h
27 lines (23 loc) · 1.56 KB
/
mysqlnd_result.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Andrey Hristov <andrey@php.net> |
| Ulf Wendel <uw@php.net> |
+----------------------------------------------------------------------+
*/
#ifndefMYSQLND_RESULT_H
#defineMYSQLND_RESULT_H
PHPAPIMYSQLND_RES*mysqlnd_result_init(constunsigned intfield_count);
PHPAPIMYSQLND_RES_UNBUFFERED*mysqlnd_result_unbuffered_init(MYSQLND_RES*result, constunsigned intfield_count, MYSQLND_STMT_DATA*stmt);
PHPAPIMYSQLND_RES_BUFFERED*mysqlnd_result_buffered_init(MYSQLND_RES*result, constunsigned intfield_count, MYSQLND_STMT_DATA*stmt);
enum_func_statusmysqlnd_query_read_result_set_header(MYSQLND_CONN_DATA*conn, MYSQLND_STMT*stmt);
#endif/* MYSQLND_RESULT_H */