|
Last change
on this file was
2,
checked in by oldcode, 25 years ago
|
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
825 bytes
|
| Line | |
|---|
| 1 | #ifndef aw_nawar_hxx_included |
|---|
| 2 | #define aw_nawar_hxx_included |
|---|
| 3 | |
|---|
| 4 | /*************************************************************************/ |
|---|
| 5 | struct AW_var_callback { |
|---|
| 6 | AW_var_callback( void (*vc_cb)(AW_root*,AW_CL,AW_CL), AW_CL cd1, AW_CL cd2 , AW_var_callback *next); |
|---|
| 7 | |
|---|
| 8 | void (*value_changed_cb)(AW_root*,AW_CL,AW_CL); |
|---|
| 9 | AW_CL value_changed_cb_cd1; |
|---|
| 10 | AW_CL value_changed_cb_cd2; |
|---|
| 11 | AW_var_callback *next; |
|---|
| 12 | |
|---|
| 13 | void run_callback(AW_root *root); |
|---|
| 14 | // runs the whole list in reverse order !!!! |
|---|
| 15 | }; |
|---|
| 16 | |
|---|
| 17 | /*************************************************************************/ |
|---|
| 18 | struct AW_var_target { |
|---|
| 19 | AW_var_target( void *pntr, AW_var_target *next); |
|---|
| 20 | void *pointer; |
|---|
| 21 | AW_var_target *next; |
|---|
| 22 | // runs the whole list in reverse order !!!! |
|---|
| 23 | }; |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | void aw_update_awar_window_geometrie(AW_root *awr); |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.