Home | History | Annotate | Download | only in src

Lines Matching refs:LCHAR

20 #include "LCHAR.h"
38 ESR_ReturnCode PFileOpen(PFile* self, const LCHAR* mode)
129 ESR_ReturnCode PFileGetFilename(PFile* self, LCHAR* filename, size_t* len)
162 ESR_ReturnCode PFileVfprintf(PFile* self, int* result, const LCHAR* format, va_list args)
185 ESR_ReturnCode PFileFgets(PFile* self, LCHAR* string, int n, LCHAR** result)
197 LCHAR number[MAX_INT_DIGITS+1];
204 count = pfread(number, sizeof(LCHAR), MAX_INT_DIGITS, self);
230 count = pfread(number + bufferSize, sizeof(LCHAR), MAX_INT_DIGITS - bufferSize, self);
270 ESR_ReturnCode PFileReadLCHAR(PFile* self, LCHAR* value, size_t len)
278 count = pfread(value, sizeof(LCHAR), len, self);
304 count = pfread(value + bufferSize, sizeof(LCHAR), len - bufferSize, self);
335 PFile* pfopen(const LCHAR* filename, const LCHAR* mode)
450 LCHAR* pfgets(LCHAR* string, int n, PFile* self)
452 LCHAR* result;
472 int pfprintf(PFile* stream, const LCHAR* format, ...)
490 int pvfprintf(PFile* stream, const LCHAR* format, va_list argptr)
505 int pprintf(const LCHAR* format, ...)