Lines Matching full:self
45 * @param self LString handle
48 ESR_ReturnCode(*append)(struct LString_t* self, const LCHAR* value);
52 * @param self LString handle
54 ESR_ReturnCode(*reset)(struct LString_t* self);
59 * @param self LString handle
62 ESR_ReturnCode(*toLCHAR)(struct LString_t* self, LCHAR** result);
66 * @param self LString handle
68 ESR_ReturnCode(*destroy)(struct LString_t* self);
77 * @param self LString handle
79 ESR_SHARED_API ESR_ReturnCode LStringCreate(LString** self);
83 * @param self LString handle
86 ESR_SHARED_API ESR_ReturnCode LStringAppend(LString* self, const LCHAR* value);
90 * @param self LString handle
92 ESR_SHARED_API ESR_ReturnCode LStringReset(LString* self);
97 * @param self LString handle
100 ESR_SHARED_API ESR_ReturnCode LStringToLCHAR(LString* self, LCHAR** result);
104 * @param self LString handle
106 ESR_SHARED_API ESR_ReturnCode LStringDestroy(LString* self);