CANDIDATELISTHEADER
typedef struct _CANDIDATELISTHEADER{ ULONG ulSize; ULONG ulStyle; ULONG ulCount; ULONG ulSelection; ULONG ulPageStart; ULONG ulPageSize; ULONG ulTitleLen; ULONG ulTitleOffset; ULONG aulOffset[1]; }CANDIDATELISTHEADER; typedef CANDIDATELISTHEADER * PCANDIDATELISTHEADER;
ulSize - size of this structure, in bytes.
ulStyle - style of the candidate list. This could be one of the following.
┌───────────────┬──────────────────────────────────────────────────┐ │Style │Description │ ├───────────────┼──────────────────────────────────────────────────┤ │CLS_READING │The list of the same reading candidates. │ ├───────────────┼──────────────────────────────────────────────────┤ │CLS_CODE │The list of the same code range candidates. │ ├───────────────┼──────────────────────────────────────────────────┤ │CLS_MEANING │The list of the same meaning candidates. │ ├───────────────┼──────────────────────────────────────────────────┤ │CLS_RADICAL │The list of the same radical candidates. │ ├───────────────┼──────────────────────────────────────────────────┤ │CLS_STROKES │The list of the same strokes candidates. │ └───────────────┴──────────────────────────────────────────────────┘