Date: Thu, 19 Aug 1999 11:54:04 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Sascha Zapf cc: djgpp AT delorie DOT com Subject: Re: TDirListBox In-Reply-To: <37BB2783.E9CE8212@netcologne.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Wed, 18 Aug 1999, Sascha Zapf wrote: > salvador schrieb: > > > Sascha Zapf wrote: > > > > > char StartDir[80]; > > > > > > The samoe Error if i use "char StartDir[PATH_MAX] I suggest FILENAME_MAX instead of PATH_MAX. The former is ANSI, the latter Posix, and many DOS/Windows compilers aren't Posix-compliant. Note that this has probably nothing to do with your real problem.