File: php_remctl.h.in

package info (click to toggle)
remctl 3.18-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,612 kB
  • sloc: ansic: 19,504; sh: 5,386; perl: 1,778; java: 740; makefile: 715; xml: 502; python: 430
file content (35 lines) | stat: -rw-r--r-- 986 bytes parent folder | download | duplicates (5)
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
32
33
34
35
/*
 * Declarations for the remctl PECL extension for PHP
 *
 * Originally written by Andrew Mortensen <admorten@umich.edu>
 * Copyright 2008 Andrew Mortensen <admorten@umich.edu>
 * Copyright 2008, 2011-2012
 *     The Board of Trustees of the Leland Stanford Junior University
 *
 * SPDX-License-Identifier: MIT
 */

#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_set_ccache);
PHP_FUNCTION(remctl_set_source_ip);
PHP_FUNCTION(remctl_set_timeout);
PHP_FUNCTION(remctl_open);
PHP_FUNCTION(remctl_command);
PHP_FUNCTION(remctl_output);
PHP_FUNCTION(remctl_noop);
PHP_FUNCTION(remctl_error);
PHP_FUNCTION(remctl_close);

extern zend_module_entry remctl_module_entry;

#endif /* PHP_REMCTL_H */