(svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.

This commit is contained in:
rubidium
2007-01-10 18:56:51 +00:00
parent a332d10fd9
commit f35ed4bbc2
190 changed files with 2825 additions and 2208 deletions

View File

@@ -1727,6 +1727,9 @@ typedef enum CzechAllow {
CZA_LONG = 4,
CZA_ALL = ~0
} CzechAllow;
DECLARE_ENUM_AS_BIT_SET(CzechAllow);
// All these flags must be satisfied (in the stem->others direction):
typedef enum CzechChoose {
CZC_NONE = 0, // No requirements.
@@ -1736,6 +1739,8 @@ typedef enum CzechChoose {
CZC_ANY = ~0
} CzechChoose;
DECLARE_ENUM_AS_BIT_SET(CzechChoose);
typedef struct CzechNameSubst {
CzechGender gender;
CzechAllow allow;