Browse Source

* part of mantis 028134, cleanup of NORM_ constants

git-svn-id: trunk@30918 -
marco 10 years ago
parent
commit
c402bffc69
1 changed files with 8 additions and 5 deletions
  1. 8 5
      rtl/win/wininc/defines.inc

+ 8 - 5
rtl/win/wininc/defines.inc

@@ -324,11 +324,14 @@
   { CompareString, LCMapString  }
      LOCALE_SYSTEM_DEFAULT = $800;
      LOCALE_USER_DEFAULT = $400;
-     NORM_IGNORECASE = 1;
-     NORM_IGNOREKANATYPE = 65536;
-     NORM_IGNORENONSPACE = 2;
-     NORM_IGNORESYMBOLS = 4;
-     NORM_IGNOREWIDTH = 131072;
+     NORM_IGNORECASE            = 1;
+     NORM_IGNORENONSPACE        = 2;
+     NORM_IGNORESYMBOLS         = 4;
+     LINGUISTIC_IGNORECASE      = $00000010;
+     LINGUISTIC_IGNOREDIACRITIC = $00000020;
+     NORM_IGNOREKANATYPE        = $00010000;
+     NORM_IGNOREWIDTH           = $00020000;
+     NORM_LINGUISTIC_CASING     = $08000000;
      SORT_STRINGSORT = 4096;
      LCMAP_BYTEREV = 2048;
      LCMAP_FULLWIDTH = 8388608;