similar to: hello, I need some help for using wine

Displaying 20 results from an estimated 900 matches similar to: "hello, I need some help for using wine"

2001 Aug 14
2
fixup_imports No implementation for NTDLL.DLL
Hi, I am a newbie and I have installed Wine release 20000909 on a machine running Mandrake7.2 and win2000. The DefaultLoadOrder for the DLLs are builtin, so, native & elfdll. LD_LIBRARY_PATH and EXTRA_LD_LIBRARY_PATH points to the directory containing the lib*.so files. I encontered the following errors while running a place & route tool.
2001 Mar 12
12
Trouble with WINE
Hello folks, I have the most recent version of WINE (20010305), and have been trying to run it with no luck until now. I have tried some very simple programs like notepad and solitaire, and both don't seem to work: all I get is a sh*itload (a REAL sh*itload) of font-related fixme's. Meanwhile, the system's load average increases, reaching a point where even the X server goes down
2007 Oct 03
2
In-site migration from /etc/passwd to LDAP
I'm doing in-site migration of accounts from /etc/passwd to an LDAP directory. The migration should be progressive (not all users at the same time). I'm already able to check mail for accounts in /etc/passwd and accounts in LDAP. The problem is with mail delivery. I'm using Postfix + Dovecot-LDA. This is the error I get with every delivery -- dovecot: Oct 03 00:16:09 Info:
2001 Aug 09
4
Quicktime 4 Setup?
Hello, I tried to run the QT4-Installer but it crashed: fixme:win32:PE_CreateModule Security directory ignored err:win32:fixup_imports No implementation for shlwapi.dll.0(StrRetToBufA) imported from shell32.dll, setting to 0xdeadbeef err:win32:fixup_imports No implementation for shlwapi.dll.0(StrRetToBufW) imported from shell32.dll, setting to 0xdeadbeef err:ntdll:RtlpWaitForCriticalSection
2001 Feb 19
1
problem loading program..
I'm loading a program from CD-ROM .. the splash screen comes up, but then a dialog box comes up with "Failed to initialize ..." btw, I'm running wine under the 2.2.16 linux kernel and the partition I'm running this program from is a win2k ntfs partition (the program is not limited to win2k however.. just what i have) Here are some of the errors (randomly selected) that
2001 Apr 28
9
DLL Error When Installing Programs
<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> <html> Running Codeweavers Preview 3 over Helix, X4, & kernel 2.4.2. <p>Notepad & sol run fine, but when I try to install a program like Netscape (just testing) I get the following error: <p><font color="#990000">Invoking /opt/wine/bin/wine.bin cc32d475.exe ...</font>
2001 Apr 10
5
[Newbie] How to get IE5.0 run
I try to get IE 5.0 run under wine. All I understood is that I have to use a native installed IE, which I copied FROM Win98SE under VMWare to my $HOME/c/Program\ Files/ Directory. It didn't work, so I copied the native windows/system directory, too. This didn't work, even when I'm starting with this switches: wine -dll shell,shell32,commctrl,comctl32=n IEXPLORE.EXE I get this error
2001 Mar 12
2
How to debug/fix "err:win32:fixup_imports"
I ran into the following error message : ---snipp--- Call kernel32.495: LoadLibraryA(102951c8 "ctmp3Lib.dll") ret=1025f5ad fs=008f Call kernel32.922: __wine_register_dll_16(418ff5ac) ret=418bd4f0 fs=008f Ret kernel32.922: __wine_register_dll_16() retval=418ff5ac ret=418bd4f0 fs=008f err:win32:fixup_imports No implementation for NTDLL.dll.3(IoUnregisterDeviceInterface), setting to
2001 Apr 08
1
MYOB
I am trying to get a Windows application called "MYOB" (Mind Your Own Business - an Australian business accounting program) working with wine. It almost works.. selecting the sample company works good with all the functions, but when trying to selecting a particular data file it fails with the following: err:win32:fixup_imports No implementation for shlwapi.dll.0(StrRetToBufA) imported
2018 Sep 06
2
Replacing a function from one module into another one
Hi Philip, Thanks for the reference, I was able to follow it and copy the code that I saw necessary, but I still have some issues (references are still not updated). I created the function: void populateVMap(llvm::ValueToValueMapTy &VMap, llvm::Function *fOld, llvm::Function *fNew) { llvm::Function::arg_iterator DestI = fOld->arg_begin(); for (llvm::Function::const_arg_iterator J =
2018 Sep 04
2
Replacing a function from one module into another one
Hi Philip, Thank you very much for your answer, the vector declaration example worked. I'm pretty sure the ValueToValueMapTy is the last thing I need because I even saw there is another function that could help me llvm*:*:RemapFunction <http://llvm.org/doxygen/namespacellvm.html#addf0183e92893bdbcde00fc9091dda93>; but my problem is that I don't know how to populate the
2018 Sep 06
2
Replacing a function from one module into another one
Hi Philip, The error happens when the program finishes and it automatically calls the destructors, so it is not an error specifically inside my program. Here's the full code: #include "llvm/ExecutionEngine/ExecutionEngine.h" #include "llvm/ExecutionEngine/MCJIT.h" #include "llvm/IRReader/IRReader.h" #include "llvm/Support/TargetSelect.h" #include
2001 Nov 15
1
newbie: shlwapi
Starting some windos programms under wine, I got err:win32:fixup_imports No implementation for shlwapi.dll.0(StrRetToBufA), setting to 0xdeadbeef err:win32:fixup_imports No implementation for shlwapi.dll.0(StrRetToBufW), setting to 0xdeadbeef What's going wrong? Erich -- EFEU is great (development tools, C libraries, interpreter language, ...). Get the open source from
2018 Sep 03
2
Replacing a function from one module into another one
Thank you Ahmad, I figured out that, although the type of both p(oInst) and p(nInst) were the same, I had to: for (unsigned int i = 0; i < callOInst->getNumArgOperands(); i++) { callOInst->getArgOperand(i)->mutateType(callNInst->getArgOperand(i)->getType()); } that solves the issue at the calling instruction in the main function, but now I see that *linkModules* does not work
2001 Apr 02
2
Starcraft (not so) success
The story: I have wine-20010216 with Starcraft installed from within wine. All works well, except, sometimes, in the middle of the game (running as root to get DGA), the mouse and keyboard stop responding altogether, 30 seconds after which the game stops moving (the display freezes altogether). I cannot do anything, not even switch to another tty. My only course is to ssh into the box from
2018 Sep 02
2
Replacing a function from one module into another one
Hi Ahmad, What does that tool does besides what LLVM linker already does? I don't think my problem is in linking both modules, I think LLVM linker does the job for me, the issue is when changing the called function to call another function (in the example previously provided, to change it from foo2 to foo3, and adjusting the function parameter's references). Regards, Daniel Moya El
2007 Feb 27
1
Trying to share HP Officejet 5610 Multi-function
I'm trying to share my HP 5610 on my Samba (3.0.24-1 fc6 x86_64) machine and am running into a typical HP related SANFU. The XP drivers supplied only install through the installation program. (ie. I can't use device manager to point XP to the driver and install it) So I installed the printer on my XP machine, used the installation program to install the drivers and then shared the
2005 Jan 08
3
virtual pbx
Is it possible to set asterisk up as a virtual pbx like in apache and virtual host? If so can someone point me to the right direction. I would also like to setup asterisk with some type of redundancy, I have searched the lists and googled but havent really found anything, I would be willing to put together a paper if I had the info and make it available, through asterisk doc project or
2001 Mar 15
2
Entropia distributed computing client won't install
Hi, Because our institute is planning a distributed-computing project in cooperation with the Entropia software, and I do not like the idea of excluding all Linux users from the project, I tried to get the Entropia software running using a recent version of wine (Wine release 20010305), which I compiled & installed on a SuSE Linux 6.4 machine (glibc 2.1.3, kernel 2.2.14) (the entropia
2002 Nov 12
4
ie6 and wine
Hi, I get the following messages(in the wine-dbg window) when I try to open IE6 and IE6 doesn't open. I have also attached the ~/.wine/conf. Can someone please help me out? TIA, Raja. -------------------------------------------------------------------------------- WineDbg starting... on pid 80678c0 No debug information in 32bit DLL 'Z:\mnt\windows\progra~1\intern~1\iexplore.exe'