pike.git
/
src
/
modules
/
Wnotify
/
wnotify.cmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/Wnotify/wnotify.cmod:97:
{ DWORD e; e = GetLastError(); push_int(e); } PIKEFUN void read_change() {
+
/*
BOOL res;
-
+
*/
if(!THIS->triggered) { Pike_error("NotificationHandle.read_change(): no change event triggered.\n"); } /* res = ReadDirectoryChangesW(THIS->handle, ); */ } INIT {
pike.git/src/modules/Wnotify/wnotify.cmod:135:
CVAR HANDLE * handles; CVAR int handles_size; CVAR int handles_used; /*! @decl void add_handle(NotificationHandle handle) */ PIKEFUN void add_handle(object handle) { void * h;
-
int s,
i,
n;
+
int s, n;
struct array * ph; HANDLE nh; HANDLE * handles; h = get_storage(handle, NotificationHandle_program); if(!h) { pop_stack(); Pike_error("add_handle: invalid object type.\n"); }