MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / EndWaitCursor

Function EndWaitCursor

src/Helpers.h:74–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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)

Callers 6

EditSetNewEncodingFunction · 0.85
EditReplaceAllFunction · 0.85
EditPrintFunction · 0.85
MsgCommandFunction · 0.85
FileIOFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected