Re: 1081 breaks export?
- Posted by jimcbrown (admin) Aug 20, 2008
- 766 views
murphy said...
./GtkEngine.e:3 'public' or 'export' must be followed by: <a type>, 'constant', 'procedure', 'type' or 'function' export include GtkRoutines.e
The line in question:
export include GtkEnums.e
This USED to work, now is broken.
"export include" was removed. You are suppose to use "public" and "public include" now. "export" is reserved for internal-library-use-only symbols while public is intended for symbols that are passed on to 3rd party code (the main app).