comparison th_ioctx.h @ 716:7aee25fbc504

Improve few comments.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 26 Oct 2020 12:33:02 +0200
parents ec8fe89576ff
children 4ca6a3b30fe8
comparison
equal deleted inserted replaced
715:6f627f4f11db 716:7aee25fbc504
42 int status; ///< Status 42 int status; ///< Status
43 size_t line; ///< Line number 43 size_t line; ///< Line number
44 44
45 // Mem data 45 // Mem data
46 size_t maxSize; ///< Maximum size (0 = no limit) 46 size_t maxSize; ///< Maximum size (0 = no limit)
47 size_t memSize; ///< Size of data 47 size_t memSize; ///< Current size of data "used"
48 size_t memAlloc; ///< Amount allocated 48 size_t memAlloc; ///< Amount actually allocated for data (>= memSize)
49 size_t minAlloc; ///< Minimum allocation increase (0 = default) 49 size_t minAlloc; ///< Minimum allocation increase (0 = default)
50 off_t memOffset; ///< Current offset in data 50 off_t memOffset; ///< Current offset in data
51 uint8_t *memData; ///< Pointer to data 51 uint8_t *memData; ///< Pointer to data
52 BOOL memFree; ///< TRUE = free the allocated memory on thfclose(), FALSE = no 52 BOOL memFree; ///< TRUE = free the allocated memory on thfclose(), FALSE = no
53 BOOL memWrite; ///< TRUE = memory can be written to / expanded etc. FALSE = no 53 BOOL memWrite; ///< TRUE = memory can be written to / expanded etc. FALSE = no