summaryrefslogtreecommitdiff
path: root/php/php_remctl.h.in
blob: 7cc272251f3f5e28d763f60728973f50530cc53a (plain)
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
/*
 * Declarations for the remctl PECL extension for PHP
 *
 * Originally written by Andrew Mortensen <admorten@umich.edu>, 2008
 * Copyright 2008 Andrew Mortensen <admorten@umich.edu>
 * Copyright 2008 Board of Trustees, Leland Stanford Jr. University
 *
 * See LICENSE for licensing terms.
 */

#ifndef PHP_REMCTL_H
#define PHP_REMCTL_H 1

/* This should be the same version as the overall remctl package. */
#define PHP_REMCTL_VERSION  "@PACKAGE_VERSION@"
#define PHP_REMCTL_EXTNAME  "remctl"
#define PHP_REMCTL_RES_NAME "remctl_resource"

PHP_MINIT_FUNCTION(remctl);
PHP_FUNCTION(remctl);
PHP_FUNCTION(remctl_new);
PHP_FUNCTION(remctl_open);
PHP_FUNCTION(remctl_command);
PHP_FUNCTION(remctl_output);
PHP_FUNCTION(remctl_error);
PHP_FUNCTION(remctl_close);

extern zend_module_entry remctl_module_entry;

#endif /* PHP_REMCTL_H */