HWND h_wnd = ::FindWindow(“Shell_TrayWnd”, NULL); if(h_wnd != NULL){ CRect r; ::GetWindowRect(h_wnd, &r); } r.top 이 현재 윈도우 해상도에서 트래이바가 시작되는 위치 r.bot…
- Category Archives C/C++
-
-
Splitting a C++ std::string using tokens, e.g. “;” [duplicate]
std::vector<std::string> split(const std::string& s,char seperator){ std::vector<std::string> output; std::string::size_type prev_pos =0, pos =0;while((pos = s.find(seperator, pos))!=…