#include <SimpleIni.h>
Public Member Functions | |
bool | ConvertFromStore (const char *a_pInputData, size_t a_uInputDataLen, SI_CHAR *a_pOutputData, size_t a_uOutputDataSize) |
bool | ConvertToStore (const SI_CHAR *a_pInputData, char *a_pOutputData, size_t a_uOutputDataSize) |
SI_ConvertW & | operator= (const SI_ConvertW &rhs) |
SI_ConvertW (bool a_bStoreIsUtf8) | |
SI_ConvertW (const SI_ConvertW &rhs) | |
size_t | SizeFromStore (const char *a_pInputData, size_t a_uInputDataLen) |
size_t | SizeToStore (const SI_CHAR *a_pInputData) |
Protected Member Functions | |
SI_ConvertW () | |
Private Attributes | |
bool | m_bStoreIsUtf8 |
Converts UTF-8 to a wchar_t (or equivalent) using the Unicode reference library functions. This can be used on all platforms.
Definition at line 2800 of file SimpleIni.h.
|
inlineprotected |
Definition at line 2803 of file SimpleIni.h.
|
inline |
Definition at line 2805 of file SimpleIni.h.
|
inline |
Definition at line 2808 of file SimpleIni.h.
|
inline |
Convert the input string from the storage format to SI_CHAR. The storage format is always UTF-8 or MBCS.
a_pInputData | Data in storage format to be converted to SI_CHAR. |
a_uInputDataLen | Length of storage format data in bytes. This must be the actual length of the data, including NULL byte if NULL terminated string is required. |
a_pOutputData | Pointer to the output buffer to received the converted data. |
a_uOutputDataSize | Size of the output buffer in SI_CHAR. |
Definition at line 2857 of file SimpleIni.h.
|
inline |
Convert the input string to the storage format of this data. The storage format is always UTF-8 or MBCS.
a_pInputData | NULL terminated source string to convert. All of the data will be converted including the terminating NULL character. |
a_pOutputData | Pointer to the buffer to receive the converted string. |
a_uOutputDataSize | Size of the output buffer in char. |
Definition at line 2937 of file SimpleIni.h.
|
inline |
Definition at line 2809 of file SimpleIni.h.
|
inline |
Calculate the number of SI_CHAR required for converting the input from the storage format. The storage format is always UTF-8 or MBCS.
a_pInputData | Data in storage format to be converted to SI_CHAR. |
a_uInputDataLen | Length of storage format data in bytes. This must be the actual length of the data, including NULL byte if NULL terminated string is required. |
Definition at line 2827 of file SimpleIni.h.
|
inline |
Calculate the number of char required by the storage format of this data. The storage format is always UTF-8 or MBCS.
a_pInputData | NULL terminated string to calculate the number of bytes required to be converted to storage format. |
Definition at line 2904 of file SimpleIni.h.
|
private |
Definition at line 2801 of file SimpleIni.h.