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.

26 lines
946 B

  1. //
  2. // Copyright (C) 1997, Microsoft Corporation. All Rights Reserved.
  3. //
  4. #ifndef __HEOSADICTHEADER_H__
  5. #define __HEOSADICTHEADER_H__
  6. #define HEOSA_DICT_HEADER_SIZE 1024
  7. #define NUM_OF_HEOSA_DICT 4 // Ssi-Keut, ToSsi, AuxVerb, AuxAd // Irregular
  8. #define NUM_OF_IRR_DICT 36 // Number of irregular type is 36
  9. //#define COPYRIGHT_STR "Copyright (C) 1996 Hangul Engineering Team. Microsoft Korea(MSCH). All rights reserved.\nVer 2.0 1996/3"
  10. struct _HeosaDictHeader {
  11. //char COPYRIGHT_HEADER[150];
  12. UINT iStart;
  13. UINT heosaDictSparseMatSize[NUM_OF_HEOSA_DICT]; // 4 Heosa + 36 IrrDict
  14. UINT heosaDictActionSize[NUM_OF_HEOSA_DICT];
  15. UINT irrDictSize[NUM_OF_IRR_DICT];
  16. _HeosaDictHeader() {
  17. //memset(COPYRIGHT_HEADER, '\0', sizeof(COPYRIGHT_HEADER));
  18. //strcpy(COPYRIGHT_HEADER, COPYRIGHT_STR);
  19. //COPYRIGHT_HEADER[strlen(COPYRIGHT_HEADER)+1] = '\032';
  20. }
  21. };
  22. #endif