Eric Pouech eric.pouech@wanadoo.fr writes:
the issue you're having right now is that:
- wine, at startup, always create a specific task to handle the desktop
(even just a CUI program is run, but you cannot tell in advance)
- this requires gdi & user to be loaded
Note that this is only for 16-bit apps. 32-bit apps won't load gdi or user unless the app itself imports them; unfortunately most command lines apps import them for no good reason. The right approach would be to delay x11drv initialization until the first gdi or user call, but this is quite a bit of work.