read_flags
- Синтаксис
-
native read_flags(const flags[]);
Переменная | Описание |
---|---|
flags |
Flag string to convert |
- Описание
- Converts a flag string to a bitflag value.
- Пометка
-
Example: The string "abcd" represents the sum of 1, 2, 4, and 8 - or (1<<0)|(1<<1)|(1<<2)|(1<<3). The function will return 15.
- Возвращает
- Bitflag value