Help file doesn't seems to have an example for _WinAPI_WaitForSingleObject
Below a simple adaptation from the _WinAPI_FindNextChangeNotification help example (also posted in the russian forum)
i'm using something similar as a way of data transfer between computers having a shared folder
#include <WinAPIEx.au3>
Local Const $g_sPath = @ScriptDir
Global $hDir = _WinAPI_FindFirstChangeNotification($g_sPath, $FILE_NOTIFY_CHANGE_LAST_WRITE)
Loc