Lines Matching defs:VFP
162 #define vfpGetModifiedLen(VFP) \ argument
173 #define vfpIncCurrPtrBy(VFP, INC) \ argument
186 #define vfpGetPath(VFP) ((VFP)->_vfpPath) argument
189 #define vfpGets(VFP, PTR, LEN) \ argument
208 #define vfpGetBytesRemaining(VFP) \ argument
213 #define vfpGetBytesAvailable(VFP) \ argument
218 #define vfpPutc(VFP, C) \ argument
225 #define vfpPutInteger(VFP, NUMBER) vfpPutFormat((VFP), "%d", (NUMBER)) argument
228 #define vfpPutLong(VFP, NUMBER) vfpPutFormat((VFP), "%ld", (NUMBER)) argument
231 #define vfpGetc(VFP) (*(VFP)->_vfpCurr++) argument
234 #define vfpGetcNoInc(VFP) (*(VFP)->_vfpCurr) argument
237 #define vfpGetCurrCharPtr(VFP) ((VFP)->_vfpCurr) argument
240 #define vfpIncCurrPtr(VFP) vfpIncCurrPtrBy((VFP), 1) argument
243 #define vfpDecCurrPtr(VFP) ((VFP)->_vfpCurr--) argument
246 #define vfpGetFirstCharPtr(VFP) ((VFP)->_vfpStart) argument
249 #define vfpGetLastCharPtr(VFP) ((VFP)->_vfpHighWater) argument
252 #define vfpSetCurrCharPtr(VFP, PTR) \ argument
259 #define vfpSetLastCharPtr(VFP, PTR) \ argument
268 #define vfpSeekToEnd(VFP) ((VFP)->_vfpCurr = ((VFP)->_vfpHighWater)+1) argument
271 #define vfpGetCurrPtrDelta(VFP, P) \ argument
275 #define vfpPuts(VFP, S) \ argument
285 #define vfpPutBytes(VFP, PTR, LEN) \ argument
299 #define vfpPutFormat(VFP, FORMAT, ARG) \ argument