Audio-Opusfile
view release on metacpan or search on metacpan
fallback/const-c.inc view on Meta::CPAN
#define PERL_constant_NOTFOUND 1
#define PERL_constant_NOTDEF 2
#define PERL_constant_ISIV 3
#define PERL_constant_ISNO 4
#define PERL_constant_ISNV 5
#define PERL_constant_ISPV 6
#define PERL_constant_ISPVN 7
#define PERL_constant_ISSV 8
#define PERL_constant_ISUNDEF 9
#define PERL_constant_ISUV 10
#define PERL_constant_ISYES 11
#ifndef NVTYPE
typedef double NV; /* 5.6 and later define NVTYPE, and typedef NV to it. */
#endif
#ifndef aTHX_
#define aTHX_ /* 5.6 or later define this for threading support. */
#endif
#ifndef pTHX_
#define pTHX_ /* 5.6 or later define this for threading support. */
#endif
static int
constant_8 (pTHX_ const char *name, IV *iv_return) {
/* When generated this function returned values for the list of names given
here. However, subsequent manual editing may have added or removed some.
OP_EIMPL OP_EREAD OP_FALSE */
/* Offset 7 gives the best switch position. */
switch (name[7]) {
case 'D':
if (memEQ(name, "OP_EREA", 7)) {
/* D */
#ifdef OP_EREAD
*iv_return = OP_EREAD;
return PERL_constant_ISIV;
#else
return PERL_constant_NOTDEF;
#endif
}
break;
case 'E':
if (memEQ(name, "OP_FALS", 7)) {
/* E */
#ifdef OP_FALSE
*iv_return = OP_FALSE;
return PERL_constant_ISIV;
#else
return PERL_constant_NOTDEF;
#endif
}
break;
case 'L':
if (memEQ(name, "OP_EIMP", 7)) {
/* L */
#ifdef OP_EIMPL
*iv_return = OP_EIMPL;
return PERL_constant_ISIV;
#else
return PERL_constant_NOTDEF;
#endif
}
break;
}
return PERL_constant_NOTFOUND;
}
static int
constant_13 (pTHX_ const char *name, IV *iv_return) {
/* When generated this function returned values for the list of names given
here. However, subsequent manual editing may have added or removed some.
OP_EBADHEADER OP_EBADPACKET OP_ENOTFORMAT OP_TRACK_GAIN */
/* Offset 7 gives the best switch position. */
switch (name[7]) {
case 'F':
if (memEQ(name, "OP_ENOTFORMAT", 13)) {
/* ^ */
#ifdef OP_ENOTFORMAT
*iv_return = OP_ENOTFORMAT;
return PERL_constant_ISIV;
#else
( run in 0.595 second using v1.01-cache-2.11-cpan-39bf76dae61 )