in reply to Re^2: Am I missing something?
in thread Am I missing something?
int psCheck( const char* prog_name ) { dSP; int ret; int count = 0; ENTER; SAVETMPS; PUSHMARK( SP ); XPUSHs( sv_2mortal( newSVpv( prog_name, 0 ) ) ); PUTBACK; ret = call_pv("psCheck", G_SCALAR); SPAGAIN; if (ret != 1) croak("Big trouble\n" ; count = POPi; PUTBACK; FREETMPS; LEAVE; return count; }
adaptermain.cpp: In function `int psCheck(const char*)': *adaptermain.cpp:365: error: `push_scope' undeclared (first use this f +unction) *adaptermain.cpp:365: error: (Each undeclared identifier is reported o +nly once *for each function it appears in.) *adaptermain.cpp:366: error: `save_int' undeclared (first use this fun +ction) *adaptermain.cpp:368: error: `markstack_grow' undeclared (first use th +is function) *adaptermain.cpp:369: error: `stack_grow' undeclared (first use this f +unction) *adaptermain.cpp:369: error: `newSVpv' undeclared (first use this func +tion) *adaptermain.cpp:369: error: `sv_2mortal' undeclared (first use this f +unction) *adaptermain.cpp:372: error: `call_pv' undeclared (first use this func +tion) *adaptermain.cpp:377: error: `croak' undeclared (first use this functi +on) *adaptermain.cpp:379: error: `sv_2iv' undeclared (first use this funct +ion) *adaptermain.cpp:381: error: `free_tmps' undeclared (first use this fu +nction) *adaptermain.cpp:382: error: `pop_scope' undeclared (first use this fu +nction)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Am I missing something?
by dave_the_m (Monsignor) on May 31, 2005 at 20:10 UTC | |
|
Re^4: Am I missing something?
by SCOSwriter (Initiate) on May 31, 2005 at 20:21 UTC |