~ubuntu-branches/ubuntu/breezy/libaal/breezy

« back to all changes in this revision

Viewing changes to include/aal/ui.h

  • Committer: Bazaar Package Importer
  • Author(s): Domenico Andreoli
  • Date: 2005-02-25 18:50:30 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050225185030-9frto0bpm1f2elxd
Tags: 1.0.4-1
New upstream release. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
#ifndef AAL_UI_H
7
7
#define AAL_UI_H
8
8
 
9
 
#ifndef ENABLE_STAND_ALONE
 
9
#ifndef ENABLE_MINIMAL
10
10
#include <aal/types.h>
11
11
 
12
12
typedef int (*aal_check_numeric_func_t) (int64_t, void *);
16
16
 
17
17
typedef int (*aal_check_alpha_func_t) (char *, void *);
18
18
 
19
 
typedef char *(*aal_alpha_func_t) (const char *, char *,
20
 
                                   aal_check_alpha_func_t, void *);
 
19
typedef void (*aal_alpha_func_t) (const char *, char *,
 
20
                                  aal_check_alpha_func_t, void *);
21
21
 
22
22
extern void aal_ui_set_numeric_handler(aal_numeric_func_t func);
23
23
extern aal_numeric_func_t aal_ui_get_numeric_handler(void);
29
29
extern void aal_ui_set_alpha_handler(aal_alpha_func_t func);
30
30
extern aal_alpha_func_t aal_ui_get_alpha_handler(void);
31
31
 
32
 
extern char *aal_ui_get_alpha(char *defvalue, 
33
 
                              aal_check_alpha_func_t check_func,
34
 
                              void *, const char *format, ...);
 
32
extern void aal_ui_get_alpha(char *defvalue, 
 
33
                             aal_check_alpha_func_t check_func,
 
34
                             void *, const char *format, ...);
35
35
#endif
36
36
 
37
37
#endif