Date: Mon, 26 May 2003 22:33:43 +0200 Message-ID: From: Jun.Furuse at inria.fr To: lablgtk at kaba.or.jp Subject: lablgtk2 msvc port is commited. MIME-Version: 1.0 (generated by SEMI 1.14.4 - "Hosorogi") Content-Type: text/plain; charset=US-ASCII Hello, Finally, I have succeeded msvc port of lablgtk2, and commited the changes. Technical notes for developpers: I found that msvc does not like empty arguments in macros like as follows: ml_glib.c:105: ML_1 (Log_level_val, , Val_int) Msvc compiles it differently from gcc andcaused strange crash... To avoid these empty args, I added the following workaround: #define ID(x) (x) ML_1 (Log_level_val, ID, Val_int) -- Jun