Displaying 3 results from an estimated 3 matches for "dwwait".
Did you mean:
dowait
2004 Oct 23
0
win32-ipc, with blocks (code review please)
...ptr->handle = (HANDLE)NUM2UINT(obj);
return self;
}
static VALUE ipc_allocate(VALUE klass){
IpcStruct* ptr = malloc(sizeof(IpcStruct));
return Data_Wrap_Struct(klass,0,ipc_free,ptr);
}
static VALUE wait_for_multiple(VALUE klass,VALUE arr,
BOOL fWaitAll,DWORD dwTimeOut)
{
DWORD dwWait;
static HANDLE *handles = NULL;
int i,len = RARRAY(arr)->len;
if(len==0){
rb_raise(cIpcError,"No objects to wait for");
}
REALLOC_N(handles,HANDLE,len);
for(i=0; i<len; i++) {
handles[i] = (HANDLE)NUM2UINT(RARRAY(arr)->ptr[i]);
}
dwWait = WaitForMu...
2005 Feb 04
7
FW: Bug fix
Forwarded, because I don''t think he''s subscribed and I''m not getting an
email notification in my Yahoo account.
Dan
-----Original Message-----
From: CT [mailto:demerzel@gmail.com]
Sent: Friday, February 04, 2005 4:17 PM
To: Berger, Daniel
Cc: win32utils-devel@rubyforge.org
Subject: Re: Bug fix
On Fri, 4 Feb 2005 16:53:17 -0600, Berger, Daniel
2005 May 01
6
win32-changejournal 0.2.0-1 compile error
...on of ''DWORD''
changejournal.c(386) : error C2146: syntax error : missing '';'' before
identifier
''dwTimeout''
changejournal.c(386) : error C2065: ''dwTimeout'' : undeclared identifier
changejournal.c(386) : error C2065: ''dwWait'' : undeclared identifier
changejournal.c(387) : error C2275: ''READ_USN_JOURNAL_DATA'' : illegal
use of thi
s type as an expression
C:\Program Files\Microsoft Visual
Studio\VC98\include\winioctl.h(1881) :
see declaration of ''READ_USN_JOURNAL_DATA'&...