Date: Thu, 11 Dec 1997 17:53:51 +0200 (IST) From: Eli Zaretskii To: Rob Snel cc: djgpp AT delorie DOT com Subject: Re: long filenames not available to DJGPP on NT? In-Reply-To: <348FE7A8.46F3@tpd.tno.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Thu, 11 Dec 1997, Rob Snel wrote: > Long filename support IS of course included in the WIN32-API, described > fairly well AND accesible from terminal applications. DOS programs cannot access the Win32 API. The terminal applications you are talking about are Win32 programs compiled as console apps; they are NOT .exe-style DOS programs, like what DJGPP produces. The Win32 API is not implemented as functions of some software interrupt. Win32 programs call these functions by ``name'' (actually a pointer into a table, resolved at link and/or load time), and the Windows kernel services them as it sees fit. You cannot access this API from a DOS program.