Anybody knows, why in Game::Init() in window style not using CS_DBLCLKS ?
- Code: Select all
1
2
3
4
5
6
7bool Game::Init()
{
..........
m_bSuspended = false;
//GetWndClassInfo().m_wc.style &=~CS_DBLCLKS;
GetWndClassInfo().m_wc.style = CS_HREDRAW | CS_VREDRAW;
..........7 lines; 2 keywds; 0 nums; 34 ops; 0 strs; 1 coms Syntactic Coloring v0.4 - Dan East
Or how made dbl-click event at PocketFrog-based application ?
