Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
496 B

  1. #ifndef _LATTICE_BIGRAM_INCLUDED
  2. #define _LATTICE_BIGRAM_INCLUDED
  3. #include "imlang.h"
  4. typedef struct tag_LATTICE_BIGRAM_INFO
  5. {
  6. DWORD dwBigram;
  7. DWORD dwPrevElement;
  8. } LATTICE_BIGRAM_INFO;
  9. // {11858E48-DE9B-4fe8-BCC8-B35CC1B1E2F0}
  10. DEFINE_GUID( GUID_LATTICE_BIGRAM_INFO_LIST, 0x11858e48, 0xde9b, 0x4fe8, 0xbc, 0xc8, 0xb3, 0x5c, 0xc1, 0xb1, 0xe2, 0xf0 );
  11. typedef struct tag_LATTICE_BIGRAM_INFO_LIST
  12. {
  13. DWORD dwTotalBigrams;
  14. LATTICE_BIGRAM_INFO bigrams[1];
  15. } LATTICE_BIGRAM_INFO_LIST;
  16. #endif