Searched refs:str_ansi (Results 1 - 7 of 7) sorted by relevance

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DCharacterHelper.h8 str_ansi * GetANSIFromUTF8(const str_utf8 * pUTF8);
9 str_ansi * GetANSIFromUTF16(const str_utf16 * pUTF16);
10 str_utf16 * GetUTF16FromANSI(const str_ansi * pANSI);
12 str_utf8 * GetUTF8FromANSI(const str_ansi * pANSI);
H A DCharacterHelper.cpp4 str_ansi * GetANSIFromUTF8(const str_utf8 * pUTF8)
7 str_ansi * pANSI = GetANSIFromUTF16(pUTF16);
12 str_ansi * GetANSIFromUTF16(const str_utf16 * pUTF16)
17 str_ansi * pANSI = new str_ansi [nANSICharacters + 1];
18 memset(pANSI, 0, (nANSICharacters + 1) * sizeof(str_ansi));
29 return (str_ansi *) pANSI;
32 str_utf16 * GetUTF16FromANSI(const str_ansi * pANSI)
99 str_utf8 * GetUTF8FromANSI(const str_ansi * pANSI)
H A DMACLib.h438 DLLEXPORT int __stdcall CompressFile(const str_ansi * pInputFilename, const str_ansi * pOutputFilename, int nCompressionLevel = COMPRESSION_LEVEL_NORMAL, int * pPercentageDone = NULL, APE_PROGRESS_CALLBACK ProgressCallback = 0, int * pKillFlag = NULL);
439 DLLEXPORT int __stdcall DecompressFile(const str_ansi * pInputFilename, const str_ansi * pOutputFilename, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag);
440 DLLEXPORT int __stdcall ConvertFile(const str_ansi * pInputFilename, const str_ansi * pOutputFilename, int nCompressionLevel, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag);
441 DLLEXPORT int __stdcall VerifyFile(const str_ansi * pInputFilename, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag, BOOL bQuickVerifyIfPossible);
H A DNoWindows.h20 typedef char str_ansi; typedef
H A DAPESimple.cpp25 int __stdcall CompressFile(const str_ansi * pInputFilename, const str_ansi * pOutputFilename, int nCompressionLevel, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag)
32 int __stdcall DecompressFile(const str_ansi * pInputFilename, const str_ansi * pOutputFilename, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag)
39 int __stdcall ConvertFile(const str_ansi * pInputFilename, const str_ansi * pOutputFilename, int nCompressionLevel, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag)
46 int __stdcall VerifyFile(const str_ansi * pInputFilename, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag, BOOL bQuickVerifyIfPossible)
H A DAPETag.cpp330 int CAPETag::GetFieldString(const str_utf16 * pFieldName, str_ansi * pBuffer, int * pBufferCharacters, BOOL bUTF8Encode)
339 CSmartPtr<str_ansi> spANSI(bUTF8Encode ? (str_ansi *) GetUTF8FromUTF16(pUTF16) : GetANSIFromUTF16(pUTF16), TRUE);
342 memset(pBuffer, 0, nOriginalCharacters * sizeof(str_ansi));
704 CSmartPtr<str_ansi> spBuffer(new str_ansi [nBytes + 1], TRUE);
725 CSmartPtr<str_ansi> spBufferANSI(GetANSIFromUTF16(cBuffer), TRUE);
H A DAll.h72 typedef char str_ansi; typedef

Completed in 53 milliseconds