Win32 API sample programs. These were all developed under cygwin on a machine runing XP. Files: createprocess.c: Windows program that starts a new process (notepad.exe) minishell.c: a simple shell. Uses readline to get a line from the user, then tries to start up a new process based on input. listprocs.c: a simple version of ps for Windows. Lists all running processes including pid and file name. Makefile: a Makefile for the above three programs. Used with the make program distributed with cygwin. For details on Win32API functions and data structures, check out msdn.microsoft.com (libraries).