Displaying 2 results from an estimated 2 matches for "rbobject".
Did you mean:
drbobject
2004 Oct 23
0
win32-ipc, with blocks (code review please)
...& (dwWait < WAIT_ABANDONED_0 + len)){
return INT2NUM(-(dwWait - WAIT_ABANDONED_0 + 1)); // an abandoned
mutex
}
if(dwWait == WAIT_TIMEOUT){
return INT2NUM(0); // Timed out
}
return Qnil;
}
static VALUE ipc_wait_any(int argc, VALUE* argv, VALUE klass)
{
VALUE rbObject, rbTimeout;
DWORD dwTimeout = INFINITE;
rb_scan_args(argc,argv,"11",&rbObject,&rbTimeout);
if(TYPE(rbObject)!=T_ARRAY) {
rb_raise(rb_eArgError,"Invalid Object Handles");
}
if(rbTimeout!=Qnil) dwTimeout = NUM2UINT(INFINITE);
return wait_for...
2005 Jan 20
1
ChangeNotify help wanted
Hi all,
I''ve checked in some code to win32-changenotify. Unfortunately, it
doesn''t work right. I need some help. I don''t understand what,
exactly, I''m supposed to pass to ReadDirectoryChangesW() for the 2nd
argument, nor how to read the data back out.
There''s also a WCHAR issue that needs to be worked out with regards to
the FileName