1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef __findlocale_h_
- #define __findlocale_h_
- typedef const char* FL_Lang;
- typedef const char* FL_Country;
- typedef const char* FL_Variant;
- typedef struct {
- FL_Lang lang;
- FL_Country country;
- FL_Variant variant;
- } FL_Locale;
- typedef enum {
-
- FL_FAILED = 0,
-
- FL_DEFAULT_GUESS = 1,
-
- FL_CONFIDENT = 2
- } FL_Success;
- typedef enum {
- FL_MESSAGES = 0
- } FL_Domain;
- FL_Success FL_FindLocale(FL_Locale **locale);
- void FL_FreeLocale(FL_Locale **locale);
- #endif
|