~ubuntu-branches/ubuntu/edgy/libapache2-mod-perl2/edgy

« back to all changes in this revision

Viewing changes to WrapXS/Apache/Command/Command.xs

  • Committer: Bazaar Package Importer
  • Author(s): Andres Salomon
  • Date: 2005-08-12 01:40:38 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050812014038-gjigefs55pqx4qc8
Tags: 2.0.1-3
Grr.  Really include perl.conf file; it got lost due to diff not
wanting to add an empty file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
/*
3
 
 * *********** WARNING **************
4
 
 * This file generated by ModPerl::WrapXS/0.01
5
 
 * Any changes made here will be lost
6
 
 * ***********************************
7
 
 * 01: lib/ModPerl/WrapXS.pm:459
8
 
 * 02: lib/ModPerl/WrapXS.pm:1053
9
 
 * 03: Makefile.PL:290
10
 
 * 04: Makefile.PL:238
11
 
 * 05: Makefile.PL:49
12
 
 */
13
 
 
14
 
 
15
 
 
16
 
#define MP_IN_XS
17
 
 
18
 
#include "mod_perl.h"
19
 
 
20
 
#include "modperl_xs_sv_convert.h"
21
 
 
22
 
#include "modperl_xs_util.h"
23
 
 
24
 
#include "modperl_xs_typedefs.h"
25
 
 
26
 
#include "Apache/Command/Apache__Command.h"
27
 
 
28
 
MODULE = Apache::Command    PACKAGE = Apache::Command   PREFIX = ap_
29
 
 
30
 
const char *
31
 
ap_check_cmd_context(cmd, forbidden)
32
 
    Apache::CmdParms cmd
33
 
    unsigned forbidden
34
 
 
35
 
 
36
 
MODULE = Apache::Command    PACKAGE = Apache::Command   PREFIX = ap_
37
 
 
38
 
const char *
39
 
ap_soak_end_container(cmd, directive)
40
 
    Apache::CmdParms cmd
41
 
    char * directive
42
 
 
43
 
 
44
 
MODULE = Apache::Command    PACKAGE = Apache::Command   PREFIX = mpxs_Apache__Command_
45
 
 
46
 
Apache::Command
47
 
mpxs_Apache__Command_next(cmd)
48
 
    Apache::Command cmd
49
 
 
50
 
 
51
 
    CODE:
52
 
    RETVAL = mpxs_Apache__Command_next(cmd);
53
 
 
54
 
    OUTPUT:
55
 
    RETVAL
56
 
 
57
 
MODULE = Apache::Command    PACKAGE = Apache::Command 
58
 
 
59
 
const char *
60
 
name(obj, val=NULL)
61
 
    Apache::Command obj
62
 
    const char * val
63
 
 
64
 
    PREINIT:
65
 
    /*nada*/
66
 
 
67
 
 
68
 
    CODE:
69
 
    RETVAL = (const char *) obj->name;
70
 
 
71
 
    if (items > 1) {
72
 
         obj->name = (const char *) val;
73
 
    }
74
 
 
75
 
    OUTPUT:
76
 
    RETVAL
77
 
 
78
 
MODULE = Apache::Command    PACKAGE = Apache::Command 
79
 
 
80
 
void *
81
 
cmd_data(obj, val=NULL)
82
 
    Apache::Command obj
83
 
    void * val
84
 
 
85
 
    PREINIT:
86
 
    /*nada*/
87
 
 
88
 
 
89
 
    CODE:
90
 
    RETVAL = (void *) obj->cmd_data;
91
 
 
92
 
    if (items > 1) {
93
 
         obj->cmd_data = (void *) val;
94
 
    }
95
 
 
96
 
    OUTPUT:
97
 
    RETVAL
98
 
 
99
 
MODULE = Apache::Command    PACKAGE = Apache::Command 
100
 
 
101
 
int
102
 
req_override(obj, val=0)
103
 
    Apache::Command obj
104
 
    int val
105
 
 
106
 
    PREINIT:
107
 
    /*nada*/
108
 
 
109
 
 
110
 
    CODE:
111
 
    RETVAL = (int) obj->req_override;
112
 
 
113
 
    if (items > 1) {
114
 
         obj->req_override = (int) val;
115
 
    }
116
 
 
117
 
    OUTPUT:
118
 
    RETVAL
119
 
 
120
 
MODULE = Apache::Command    PACKAGE = Apache::Command 
121
 
 
122
 
enum cmd_how
123
 
args_how(obj, val=0)
124
 
    Apache::Command obj
125
 
    enum cmd_how val
126
 
 
127
 
    PREINIT:
128
 
    /*nada*/
129
 
 
130
 
 
131
 
    CODE:
132
 
    RETVAL = (enum cmd_how) obj->args_how;
133
 
 
134
 
    if (items > 1) {
135
 
         obj->args_how = (enum cmd_how) val;
136
 
    }
137
 
 
138
 
    OUTPUT:
139
 
    RETVAL
140
 
 
141
 
MODULE = Apache::Command    PACKAGE = Apache::Command 
142
 
 
143
 
const char *
144
 
errmsg(obj, val=NULL)
145
 
    Apache::Command obj
146
 
    const char * val
147
 
 
148
 
    PREINIT:
149
 
    /*nada*/
150
 
 
151
 
 
152
 
    CODE:
153
 
    RETVAL = (const char *) obj->errmsg;
154
 
 
155
 
    if (items > 1) {
156
 
         obj->errmsg = (const char *) val;
157
 
    }
158
 
 
159
 
    OUTPUT:
160
 
    RETVAL
161
 
 
162
 
MODULE = Apache::Command
163
 
PROTOTYPES: disabled
164
 
 
165
 
BOOT:
166
 
    items = items; /* -Wall */
167