Displaying 2 results from an estimated 2 matches for "max_str".
Did you mean:
maxstr
2006 May 10
5
[Fwd: tailing error]
-------------- next part --------------
An embedded message was scrubbed...
From: =?iso-8859-1?Q?Pe=F1a=2C_Botp?= <botp at delmonte-phil.com>
Subject: tailing error
Date: Tue, 9 May 2006 11:21:03 +0800
Size: 1852
Url: http://rubyforge.org/pipermail/win32utils-devel/attachments/20060509/45783cb1/attachment.eml
2004 Oct 23
0
win32-ipc, with blocks (code review please)
...*****************************************************
* ipc.c - source for the win32-ipc package
****************************************************************************/
#include "ruby.h"
#include <windows.h>
#include "ipc.h"
static VALUE cIpcError;
static char error[MAX_STRING];
static VALUE ipc_init(VALUE self, VALUE obj){
IpcStruct* ptr;
Data_Get_Struct(self,IpcStruct,ptr);
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_...