Re: How to add user under Cygwin

2005-07-20 Thread Raz
On 7/20/05, Christopher Faylor <[EMAIL PROTECTED]> wrote: > On Wed, Jul 20, 2005 at 04:23:31PM -0400, Etienne Mbuyi wrote: > >$ net user AyamJ password /add /yes > >$ net localgroup AyamJ /add > >$ mkpassd -l -u AyamJ >> /etc/passwd > > Does this work on Windows 9x, too? It seems like some kind

Re: Warnings for converting non-pointer types to NULL

2005-05-12 Thread Raz
On 5/12/05, Mikael <[EMAIL PROTECTED]> wrote: > I guess presume NULL is a macro evaulting to 0 in windows.h and a typedef > for (void *)0 in , or? No. Not in . Since you are using that header file, I assume you are using C++. In C++, NULL is 0, not (void *)0 as it is in C. > > Since I want to ha