FreeRDP
rdtk_label.h
1 
19 #ifndef RDTK_LABEL_PRIVATE_H
20 #define RDTK_LABEL_PRIVATE_H
21 
22 #include <rdtk/rdtk.h>
23 
24 #include "rdtk_surface.h"
25 
26 #include "rdtk_engine.h"
27 
28 struct rdtk_label
29 {
30  rdtkEngine* engine;
31 };
32 
33 #ifdef __cplusplus
34 extern "C"
35 {
36 #endif
37 
38  int rdtk_label_engine_init(rdtkEngine* engine);
39  int rdtk_label_engine_uninit(rdtkEngine* engine);
40 
41  rdtkLabel* rdtk_label_new(rdtkEngine* engine);
42  void rdtk_label_free(rdtkLabel* label);
43 
44 #ifdef __cplusplus
45 }
46 #endif
47 
48 #endif /* RDTK_LABEL_PRIVATE_H */