I have searched the news groups and haven't found anything on this subject yet.
What I'm trying to do is run an NT utility called dumpel.exe under wine. The utility connects to an NT/2000 Server and dumps it's event log to a text file. I have some later processing I'm going to do with the file, but I can't get wine to run the app. Here is what I run:
wine --dll advapi32=native --dll ntdll=native -- dumpel.exe -s \\GIGDC1 - d 14 -t -f gigdc1app.txt -l application
The error I get is:
err:module:import_dll No implementation for NTDLL.DLL.NtAccessCheckByTypeAndAuditAlarm imported from C:\windows\system \ADVAPI32.DLL, setting to 0xdeadbeef
If I just display the help file on dumpel.exe it works fine, I think there's just something I'm missing.
Any help is appreciated,
TIA
Josh
"Josh" == Josh Konkol samba@guidemail.com writes:
Josh> I have searched the news groups and haven't found anything on this Josh> subject yet.
Josh> What I'm trying to do is run an NT utility called dumpel.exe under Josh> wine. The utility connects to an NT/2000 Server and dumps it's Josh> event log to a text file. I have some later processing I'm going Josh> to do with the file, but I can't get wine to run the app. Here is Josh> what I run:
Josh> wine --dll advapi32=native --dll ntdll=native -- dumpel.exe -s Josh> \\GIGDC1 - d 14 -t -f gigdc1app.txt -l application
You can't run with native ntdll. It seems that wine silently drops that request.
Josh> The error I get is:
Josh> err:module:import_dll No implementation for Josh> NTDLL.DLL.NtAccessCheckByTypeAndAuditAlarm imported from Josh> C:\windows\system \ADVAPI32.DLL, setting to 0xdeadbeef
That's the normal report about an unimplemented function. As long as the function is not accessed, it's harmless. Stubbing it out (declaring the parameters in the spec file and write a dummy implementation) might get you further. If the application needs the function, however the fiunction has to be implemented.
Bye