CCustomTextEntry.cpp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #include "CCustomTextEntry.h"
  2. #include "CFTTLangDatabase.h"
  3. #include "memctrl.h"
  4. //-------------------------------------------------------------------------------------------------
  5. //00221034
  6. CCustomTextEntry::CCustomTextEntry() {
  7. }
  8. //-------------------------------------------------------------------------------------------------
  9. //00221074
  10. CCustomTextEntry::CCustomTextEntry(CCustomTextEntry const &other) {
  11. }
  12. //-------------------------------------------------------------------------------------------------
  13. //002210E6 //^_^
  14. CCustomTextEntry::~CCustomTextEntry() {
  15. }
  16. //-------------------------------------------------------------------------------------------------
  17. //00220F68
  18. bool CCustomTextEntry::IsValid() {
  19. return 1;
  20. }
  21. //-------------------------------------------------------------------------------------------------
  22. //00220F6C
  23. int CCustomTextEntry::GetTextID() {
  24. return 1;
  25. }
  26. //-------------------------------------------------------------------------------------------------
  27. //00220F70
  28. wchar_t *CCustomTextEntry::GetString(ELangType e) {
  29. return nullptr;
  30. }
  31. //-------------------------------------------------------------------------------------------------
  32. //00221022 //^_^
  33. CCustomTextEntry &CCustomTextEntry::operator=(CCustomTextEntry const &other) {
  34. return *this;
  35. }
  36. //-------------------------------------------------------------------------------------------------
  37. //00221080
  38. void CCustomTextEntry::CopyMembers(CCustomTextEntry const &other) {
  39. }
  40. //-------------------------------------------------------------------------------------------------
  41. //00221122
  42. int CCustomTextEntry::SetTextEntry(CFTTLangDatabase *other, char const *pStr, ELangType eType) {
  43. return 0;
  44. }
  45. //-------------------------------------------------------------------------------------------------