Public Typedefs
A few type defs to make life a bit easier when reading/writing the code.
displaycapslist_t
Definition
- typedef std::vector<displaycaps> displaycapslist_t
Other Details / Notes
- Todo.
oglcapslist_t
Definition
- typedef std::vector<openglcaps> oglcapslist_t
Other Details / Notes
- Todo.
winHnd
Defination
- typedef int winHnd
Other Details / Notes
- Todo.
winprop_t
Defination
- typedef winprops::winprops_enum winprop_t
Other Details / Notes
- Just an alias to help pass the enum type into functions
winmsg_t
Defination
- typedef winmsgs::winmsgs_enum winmsg_t
Other Details / Notes
- Just an alias to help pass the enum type into functions
usermessagehandler_t
Defination
- typedef boost::function2<bool, winHnd, winmsgdata> UserMessageHandler_t;
Other Details / Notes
- Defines the type for all user message handlers. The function type must either be a function which returns a bool and takes a winHnd and winmsgdata or it must be a function object which can be called as such. See the two examples for implimentation details ( Custom Handler Example and Custom Handler Multiple Windows)