DCF Plugin - Double Cursor Fix plugin for SKSE
==============================================
http://skyrim.nexusmods.com/mods/36125

v1.3
Improve compatibility by removing CRT from plugin.

v1.2: 
Proper method to hide/show cursor, now should work much better with BW_plugin. 
It also resolves no cursor or cursor appearing only after clicking after alttab.
For more info read NOTES section below.

Fixes double cursor when alt+tab game.
This is not poor AutoHotkey script or separate launcher/application.
Works automatically at Skyrim start!
Also check Borderless Window plugin for SKSE: http://skyrim.nexusmods.com/mods/36177

REQUIRMENTS:
SKSE 1.6.x

USAGE:
Copy Data directory to Skyrim install directory

NOTES:
Other similar mods/launchers (AutoHotkey scripts) make cursor transparent instead of hiding it properly, mostly because ShowCursor() does not work as expected for their authors. Function name is misleading, because MSDN documentation for ShowCursor() says that system have a reference counting for cursor show/hide operations. So app must hide cursor as many times as shown it to make it disappear from screen.

Proper C code for always hide:
while(ShowCursor(FALSE) > -1);

Proper C code for always show:
while(ShowCursor(TRUE) < 0);



