forked from neoxic/php-amf3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp_amf3.h
31 lines (26 loc) · 1.03 KB
/
php_amf3.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
28
29
30
31
/*
* ========================================================================
* PHP AMF3 encoding/decoding extension
* Work started by Arseny Vakhrushev on 11 Jan 2010
* Copyright (C) 2010 IT Territory, LLC. http://it-territory.ru/
* ========================================================================
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Please read the LICENSE file for license details
*/
#ifndef PHP_AMF3_H
#define PHP_AMF3_H
#define PHP_AMF3_VERSION "0.4.0"
extern zend_module_entry amf3_module_entry;
PHP_FUNCTION(amf3_encode);
PHP_FUNCTION(amf3_decode);
#endif