bug 95518, r=yokoyama@netscape.com,r=Roland.Mainz@informatik.med.uni-giessen.de,

sr=brendan@mozilla.org,

Define the size of a PRUint32 char map, aka: 8K char map
This commit is contained in:
bstell%netscape.com 2001-09-19 02:49:05 +00:00
Родитель f0fb3c199b
Коммит b2ec2f83c5
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -39,6 +39,9 @@
#define SET_REPRESENTABLE(info, c) (info)[(c) >> 5] |= (1L << ((c) & 0x1f))
#define CLEAR_REPRESENTABLE(info, c) (info)[(c) >> 5] &= (~(1L << ((c) & 0x1f)))
// number of PRUint32 in the 64Kbit char map
#define UCS2_MAP_LEN 2048
/**
*/
class nsICharRepresentable : public nsISupports