Re: Create stub dosx.exe

2008-03-25 Thread Alexandre Julliard
Justin Chevrier <[EMAIL PROTECTED]> writes: > Alexandre Julliard wrote: >> Does it just need to file to exist, or does it actually try to run it? >> >> > It just needs the file to exist in the system32 folder. OK, then the wine.inf change should be enough, no need to create a real program. --

Re: Create stub dosx.exe

2008-03-25 Thread Justin Chevrier
Dmitry Timoshkov wrote: > "Justin Chevrier" <[EMAIL PROTECTED]> wrote: > >> +#define WIN32_LEAN_AND_MEAN >> + >> +#include > > What's the reason to include anything in an empty stub? > >> +int main(int argc, char *argv[]) >> +{ >> +return 0; >> +} > Ya, that shouldn't be there. Thanks Dmitry.

Re: Create stub dosx.exe

2008-03-25 Thread Justin Chevrier
Alexandre Julliard wrote: > Justin Chevrier <[EMAIL PROTECTED]> writes: > > >> I've got a console app (Master of Orion 2 1.40p23 patch >> http://www.spheriumnorth.com/blog-images/Moo2v140b23.zip ) that >> crashes if it doesn't find dosx.exe in the system32 folder. >> > > Does it just need t

Re: Create stub dosx.exe

2008-03-25 Thread Alexandre Julliard
Justin Chevrier <[EMAIL PROTECTED]> writes: > I've got a console app (Master of Orion 2 1.40p23 patch > http://www.spheriumnorth.com/blog-images/Moo2v140b23.zip ) that > crashes if it doesn't find dosx.exe in the system32 folder. Does it just need to file to exist, or does it actually try to run

Re: Create stub dosx.exe

2008-03-25 Thread Justin Chevrier
Alexandre Julliard wrote: > Justin Chevrier <[EMAIL PROTECTED]> writes: > > >> Changelog: >> >> Create stub dosx.exe >> > > Why do you need this? > > I've got a console app (Master of Orion 2 1.40p23 patch http://www.spheriumnor

Re: Create stub dosx.exe

2008-03-25 Thread Alexandre Julliard
Justin Chevrier <[EMAIL PROTECTED]> writes: > Changelog: > > Create stub dosx.exe Why do you need this? -- Alexandre Julliard [EMAIL PROTECTED]

Re: Create stub dosx.exe

2008-03-25 Thread Dmitry Timoshkov
"Justin Chevrier" <[EMAIL PROTECTED]> wrote: > +#define WIN32_LEAN_AND_MEAN > + > +#include What's the reason to include anything in an empty stub? > +int main(int argc, char *argv[]) > +{ > +return 0; > +} -- Dmitry.