| 72 | SendMessage ( hwndEdit, SCI_SETCURSOR, ( WPARAM ) SC_CURSORWAIT, 0 ); |
| 73 | } |
| 74 | __inline void EndWaitCursor() |
| 75 | { |
| 76 | POINT pt; |
| 77 | SendMessage ( hwndEdit, SCI_SETCURSOR, ( WPARAM ) SC_CURSORNORMAL, 0 ); |
| 78 | GetCursorPos ( &pt ); |
| 79 | SetCursorPos ( pt.x, pt.y ); |
| 80 | } |
| 81 | |
| 82 | |
| 83 | #define Is2k() (g_uWinVer >= 0x0500) |
no outgoing calls
no test coverage detected