DB/GMSurveyAnswers: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 32: Line 32:
   uint32_t m_Sort_Index;
   uint32_t m_Sort_Index;
   {{Template:Type/foreign_key|table=GMSurveyQuestions}} m_GMSurveyQuestionID;
   {{Template:Type/foreign_key|table=GMSurveyQuestions}} m_GMSurveyQuestionID;
   stringref m_Answer_lang;
   {{Template:Type|stringref}} m_Answer_lang;
  };
  };
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WotLK]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Revision as of 11:58, 23 February 2016

Column Field Type Notes
1 ID Integer
2 SortIndex Integer
3 GMSurveyQuestionID Integer
4 - 19 AnswerLang String
20 AnswerLangFlags Bitmask
struct GMSurveyAnswersEntry // sizeof(0x10)
{
   m_ID; // +0x0, size 0x4, type 0
   m_Sort_Index; // +0x4, size 0x4, type 0
   m_GMSurveyQuestionID; // +0x8, size 0x4, type 0
   m_Answer_lang; // +0xC, size 0x4, type 2
};


6.0.1.18179

struct GMSurveyAnswersRec {
  uint32_t m_ID;
  uint32_t m_Sort_Index;
  foreign_key<uint32_t, &GMSurveyQuestionsRec::m_ID> m_GMSurveyQuestionID;
  stringref m_Answer_lang;
};