NinjaTrader 6.5

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
cooler21
Newbie
Newbie
Posts: 1
Joined: Thu Apr 17, 2008 10:49 am

NinjaTrader 6.5

Post by cooler21 »

Hi. I am new in Linux using. Now I am using Mandriva Spring 2008 and I am very looking forward to the new Kubuntu with KDE 4. I now play with Wine application. I would like to run the NinjaTrader 6.5 which is free for download and use from http://www.ninjatrader.com/webnew/downl ... ftware.htm .As you dowload the .exe file the real program download starts via internet. When I try to run this .exe file through Wine's File manager the NT's download wizard starts but no data are downloaded. What sould I do? Thanks
qwertymn
Level 4
Level 4
Posts: 236
Joined: Thu Mar 27, 2008 3:42 am

Post by qwertymn »

try this patch:

diff --git a/dlls/wininet/urlcache.c b/dlls/wininet/urlcache.c
index 429867a..a35ef08 100644
--- a/dlls/wininet/urlcache.c
+++ b/dlls/wininet/urlcache.c
@@ -3113,6 +3113,7 @@ BOOL WINAPI FindNextUrlCacheEntryW(
LPDWORD lpdwNextCacheEntryInfoBufferSize
)
{
+ SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
FIXME("(%p, %p, %p) stub\n", hEnumHandle, lpNextCacheEntryInfo, lpdwNextCacheEntryInfoBufferSize);
return FALSE;
}


I tested it, and then the doenload starts. I'll senfd it to wine-patches
Locked