str.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:4k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*****************************************************************************
  2.  *
  3.  * This program is free software ; you can redistribute it and/or modify
  4.  * it under the terms of the GNU General Public License as published by
  5.  * the Free Software Foundation; either version 2 of the License, or
  6.  * (at your option) any later version.
  7.  *
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11.  * GNU General Public License for more details.
  12.  *
  13.  * You should have received a copy of the GNU General Public License
  14.  * along with this program; if not, write to the Free Software
  15.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  16.  *
  17.  * $Id: str.h 498 2006-01-03 12:01:57Z picard $
  18.  *
  19.  * The Core Pocket Media Player
  20.  * Copyright (c) 2004-2005 Gabor Kovacs
  21.  *
  22.  ****************************************************************************/
  23. #ifndef __STR_H
  24. #define __STR_H
  25. #define LANG_ID FOURCC('L','A','N','G')
  26. #define LANG_EN FOURCC('E','N','_','_')
  27. #define LANG_DEFAULT LANG_EN
  28. #define TSIZEOF(name) (sizeof(name)/sizeof(tchar_t))
  29. typedef struct strid
  30. {
  31. int Class;
  32. int No;
  33. } strid;
  34. DLL void String_Init();
  35. DLL void String_Done();
  36. DLL int LangEnum(int Class, int No);
  37. DLL const tchar_t* LangStr(int Class, int Id);
  38. DLL const tchar_t* LangStrDef(int Class, int Id); // in English
  39. DLL void StringAdd(bool_t Default, int Class,int No,const tchar_t*);
  40. DLL void StringAddPrint(bool_t Default, int Class,int No,const tchar_t*, ...);
  41. DLL void StringAddText(const char* Data,int Length);
  42. DLL bool_t StringAddBinary(const void* Data, size_t Length);
  43. DLL bool_t StringIsBinary(int Class, int Id);
  44. DLL bool_t IsSpace(int);
  45. DLL bool_t IsAlpha(int);
  46. DLL bool_t IsDigit(int);
  47. DLL int Hex(int);
  48. DLL int GetCodePage(const tchar_t* ContentType);
  49. DLL void StrToTcs(tchar_t* Out,size_t OutLen,const char* In);
  50. DLL void StrToTcsEx(tchar_t* Out,size_t OutLen,const char* In,int CodePage);
  51. DLL void WcsToTcs(tchar_t* Out,size_t OutLen,const uint16_t* In);
  52. DLL void UTF8ToTcs(tchar_t* Out,size_t OutLen,const char* In);
  53. DLL void AsciiToTcs(tchar_t* Out,size_t OutLen,const char* In);
  54. DLL void TcsToAscii(char* Out,size_t OutLen,const tchar_t* In);
  55. DLL void TcsToUTF8(char* Out,size_t OutLen,const tchar_t* In);
  56. DLL void TcsToStr(char* Out,size_t OutLen,const tchar_t* In);
  57. DLL void TcsToStrEx(char* Out,size_t OutLen,const tchar_t* In,int CodePage);
  58. DLL void tcscpy_s(tchar_t* Out,size_t OutLen,const tchar_t* In);
  59. DLL void tcsncpy_s(tchar_t* Out,size_t OutLen,const tchar_t* In,size_t n);
  60. DLL void tcscat_s(tchar_t* Out,size_t OutLen,const tchar_t* In);
  61. DLL int tcsicmp(const tchar_t* a,const tchar_t* b);
  62. DLL int tcsnicmp(const tchar_t* a,const tchar_t* b,size_t n);
  63. DLL void tcsupr(tchar_t* a);
  64. DLL void tcsuprto(tchar_t* s, tchar_t Delimiter);
  65. DLL tchar_t* tcsdup(const tchar_t*);
  66. DLL int stscanf(const tchar_t* In, const tchar_t* Mask, ...);
  67. DLL void stprintf_s(tchar_t* Out,size_t OutLen,const tchar_t* Mask, ...);
  68. DLL void stcatprintf_s(tchar_t* Out,size_t OutLen,const tchar_t* Mask, ...);
  69. DLL void vstprintf_s(tchar_t* Out,size_t OutLen,const tchar_t* Mask,va_list Arg);
  70. DLL uint32_t UpperFourCC(uint32_t);
  71. DLL void FourCCToString(tchar_t* Out, size_t OutLen, uint32_t FourCC);
  72. DLL uint32_t StringToFourCC(const tchar_t* In, bool_t Upper);
  73. DLL void FractionToString(tchar_t* Out, size_t OutLen, const fraction* Fraction, bool_t Percent, int Decimal);
  74. DLL int StringToInt(const tchar_t* In, bool_t Hex);
  75. DLL void IntToString(tchar_t* Out, size_t OutLen, int Int, bool_t Hex);
  76. DLL void TickToString(tchar_t* Out, size_t OutLen, tick_t Tick, bool_t MS, bool_t Extended, bool_t Fix);
  77. DLL void HotKeyToString(tchar_t* Out, size_t OutLen, int HotKey);
  78. DLL void BoolToString(tchar_t* Out, size_t OutLen, bool_t Bool);
  79. DLL void GUIDToString(tchar_t* Out, size_t OutLen, const guid*);
  80. DLL bool_t StringToGUID(const tchar_t* In, guid*);
  81. #endif