source: web/old/remctl-2.14/php/php_remctl.h.in @ f6f3e91

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
19PHP_MINIT_FUNCTION(remctl);
20PHP_FUNCTION(remctl);
21PHP_FUNCTION(remctl_new);
22PHP_FUNCTION(remctl_open);
23PHP_FUNCTION(remctl_command);
24PHP_FUNCTION(remctl_output);
25PHP_FUNCTION(remctl_error);
26PHP_FUNCTION(remctl_close);
27
28extern zend_module_entry remctl_module_entry;
29
30#endif /* PHP_REMCTL_H */
Note: See TracBrowser for help on using the repository browser.