Quote:
Originally Posted by MartinZ
Hi Sergey,
1.) Could you put a link to the html-documentation, that you host on your site to the google-code-project page?
|
sure
Quote:
Originally Posted by MartinZ
2.) I think it would be quite helpful if we could link some example code to the functions and structs explanations.
|
Yes, we can...
The 2 options are here:
1. Examples inside the docs:
//! \code
//! case EVT_KEYRELEASE:
//! {
//! printf("Before SendMessage()\n");
//! SendEvent(main_handler, 2000, 0, 0);
//! SendEvent(main_handler, 2000, 0, 0);
//! FlushEvents(); // the 2 pending events are not processed immediately... why?
//! printf("%d\n", IsAnyEvents()); // result is 1 ... why?
//! }
//! \endcode
//!
2. Examples outside the docs.
I prefer the first way... What about you?