Re: Remove STRICT ifdef in Wine code

2000-12-29 Thread Alexandre Julliard
François Gouget [EMAIL PROTECTED] writes: The current way to do it (i.e. the one that does not generate warnings) is to write: HWND hNullHandle = 0; but when HANDLE becomes a pointer it should become: HWND hNullHandle = NULL; IMNSHO it might just as well remain as 0. There is

Re: Remove STRICT ifdef in Wine code

2000-12-29 Thread Francois Gouget
On 29 Dec 2000, Alexandre Julliard wrote: François Gouget [EMAIL PROTECTED] writes: The current way to do it (i.e. the one that does not generate warnings) is to write: HWND hNullHandle = 0; but when HANDLE becomes a pointer it should become: HWND hNullHandle = NULL;