web
Last change
on this file since f6f3e91 was
f6f3e91,
checked in by Jessica B. Hamrick <jhamrick@…>, 15 years ago
|
Preserve directory hierarchy (not sure what happened to it)
|
-
Property mode set to
100644
|
File size:
835 bytes
|
Line | |
---|
1 | /* |
---|
2 | * Declarations for the remctl PECL extension for PHP |
---|
3 | * |
---|
4 | * Originally written by Andrew Mortensen <admorten@umich.edu>, 2008 |
---|
5 | * Copyright 2008 Andrew Mortensen <admorten@umich.edu> |
---|
6 | * Copyright 2008 Board of Trustees, Leland Stanford Jr. University |
---|
7 | * |
---|
8 | * See LICENSE for licensing terms. |
---|
9 | */ |
---|
10 | |
---|
11 | #ifndef PHP_REMCTL_H |
---|
12 | #define PHP_REMCTL_H 1 |
---|
13 | |
---|
14 | /* This should be the same version as the overall remctl package. */ |
---|
15 | #define PHP_REMCTL_VERSION "@PACKAGE_VERSION@" |
---|
16 | #define PHP_REMCTL_EXTNAME "remctl" |
---|
17 | #define PHP_REMCTL_RES_NAME "remctl_resource" |
---|
18 | |
---|
19 | PHP_MINIT_FUNCTION(remctl); |
---|
20 | PHP_FUNCTION(remctl); |
---|
21 | PHP_FUNCTION(remctl_new); |
---|
22 | PHP_FUNCTION(remctl_open); |
---|
23 | PHP_FUNCTION(remctl_command); |
---|
24 | PHP_FUNCTION(remctl_output); |
---|
25 | PHP_FUNCTION(remctl_error); |
---|
26 | PHP_FUNCTION(remctl_close); |
---|
27 | |
---|
28 | extern zend_module_entry remctl_module_entry; |
---|
29 | |
---|
30 | #endif /* PHP_REMCTL_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.