Changeset 525
- Timestamp:
- 05/02/07 20:41:57 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/client-xs-20070328/Cache-Memcached-GetParserXS/GetParserXS.xs
r486 r525 4 4 5 5 #include "ppport.h" 6 7 #include "const-c.inc"8 6 9 7 #define DEST 0 /* destination hashref we're writing into */ … … 19 17 #define DEBUG 0 20 18 19 #include "const-c.inc" 20 21 21 int get_nslen (AV* self) { 22 22 SV** svp = av_fetch(self, NSLEN, 0); … … 84 84 } 85 85 86 inline intget_state (AV* self) {86 inline IV get_state (AV* self) { 87 87 SV** svp = av_fetch(self, STATE, 0); 88 88 if (svp) … … 266 266 AV* self = (AV*) SvRV(selfref); 267 267 HV* ret = get_dest(self); 268 intstate = get_state(self);268 IV state = get_state(self); 269 269 270 270 if (state) {
