Lines Matching defs:VFP
160 #define vfpGetModifiedLen(VFP) \ argument
171 #define vfpIncCurrPtrBy(VFP, INC) \ argument
184 #define vfpGetPath(VFP) ((VFP)->_vfpPath) argument
187 #define vfpGets(VFP, PTR, LEN) \ argument
206 #define vfpGetBytesRemaining(VFP) \ argument
211 #define vfpGetBytesAvailable(VFP) \ argument
216 #define vfpPutc(VFP, C) \ argument
223 #define vfpPutInteger(VFP, NUMBER) vfpPutFormat((VFP), "%d", (NUMBER)) argument
226 #define vfpPutLong(VFP, NUMBER) vfpPutFormat((VFP), "%ld", (NUMBER)) argument
229 #define vfpGetc(VFP) (*(VFP)->_vfpCurr++) argument
232 #define vfpGetcNoInc(VFP) (*(VFP)->_vfpCurr) argument
235 #define vfpGetCurrCharPtr(VFP) ((VFP)->_vfpCurr) argument
238 #define vfpIncCurrPtr(VFP) vfpIncCurrPtrBy((VFP), 1) argument
241 #define vfpDecCurrPtr(VFP) ((VFP)->_vfpCurr--) argument
244 #define vfpGetFirstCharPtr(VFP) ((VFP)->_vfpStart) argument
247 #define vfpGetLastCharPtr(VFP) ((VFP)->_vfpHighWater) argument
250 #define vfpSetCurrCharPtr(VFP, PTR) \ argument
257 #define vfpSetLastCharPtr(VFP, PTR) \ argument
266 #define vfpSeekToEnd(VFP) ((VFP)->_vfpCurr = ((VFP)->_vfpHighWater)+1) argument
269 #define vfpGetCurrPtrDelta(VFP, P) \ argument
273 #define vfpPuts(VFP, S) \ argument
283 #define vfpPutBytes(VFP, PTR, LEN) \ argument
297 #define vfpPutFormat(VFP, FORMAT, ARG) \ argument