search for: libuser32

Displaying 20 results from an estimated 31 matches for "libuser32".

2002 Feb 26
0
DDE problems
...nd+0x237db8): 004e: sel=0277 base=40cb7000 limit=00000fff 32-bit rw- Backtrace: =>0 0x400a47d6 (GlobalLock+0x1a(hmem=0xc032090f) [global.c:1090] in libntdll.so) (ebp=40ca69b0) 1 0x406266c6 (UnpackDDElParam+0x46(msg=0x3e7, lParam=0xc032090f, uiLo=0x40ca6a10, uiHi=0x40ca6a14) [misc.c:130] in libuser32.so) (ebp=40ca69c8) 2 0x4062f205 (post_dde_message+0x35(dest_tid=0x80745a8, data=0x40ca6b2c, info=0x40ca6b70, data=0x40ca6b2c, data=0x40ca6b2c, data=0x40ca6b2c) [message.c:1142] in libuser32.so) (ebp=40ca6a84) 3 0x4062ff94 (put_message_in_queue+0xc8(dest_tid=0x80745a8, info=0x40ca6b70, repl...
2001 Nov 19
1
Crash when pressing OK/Cancel in User Preferences - Lotus Notes RNext
...nformation from ELF '/usr/local/lib/libshfolder.so' (0x4001a000) Loaded debug information from ELF '/usr/local/lib/libshell32.so' (0x406cb000) Loaded debug information from ELF '/usr/local/lib/libole32.so' (0x40733000) Loaded debug information from ELF '/usr/local/lib/libuser32.so' (0x40789000) Loaded debug information from ELF '/usr/local/lib/libgdi32.so' (0x4089e000) No debug information in ELF '/usr/lib/libfreetype.so.6' (0x4090b000) Loaded debug information from ELF '/usr/local/lib/librpcrt4.so' (0x40941000) Loaded debug information from...
2001 Feb 01
6
hello, I need some help for using wine
hello, i have this problem : [y.moya@yves y.moya]$ cd /mnt/cdrom [y.moya@yves cdrom]$ ls 3Dfx SETUP.EXE _setup.dll autorun.pak hlinst.dll setup.bmp DATA.TAG SETUP.INI _sys1.cab data1.cab lang.dat setup.ins DIRECTX Worldcraft _user1.cab dsetup.dll layout.bin setup.lid Localize.cab _INST32I.EX_ autorun.exe dsetup16.dll os.dat sierra.inf
2002 Feb 20
4
BUILTINUILTIN32_dlopen
Hallo I got the error with newest CVS-Wine fixme:win32:PE_CreateModule Unknown directory 15 ignored err:module:Berr:module:BUILTINUILTIN32_dlopen failed to load .so lib for builtin user32.dll: undefined symbol: FT_Vector_Rotate err:module:PE_fixup_imports Module (file) user32.dll (which is needed by F:\Sateliti\AD3000Edit\AD3000Edit.exe) not found I can't use any Programm with Wine. --
2015 Aug 13
2
[lld] Alias in COFF short import library.
Hi Rui, I have finished my tool to generate short import libs for mingw-w64. It works fine with lld for actual symbols. But it seems lld segfaults when I try to use and an alias as we discussed before. I have attached 3 import libraries. They all only have 1 import function. libuser32orig.a -> Works fine and only has MessageBoxA libuser32b.a -> the symbol table has MessageBoxB and __imp_MessageBoxB but the Import object has MessageBoxA.user32.dll. This causes a segfault in lld but should link correctly right ? Additionally I have attached libuser32.a This is the same as...
2015 Aug 13
2
[lld] Alias in COFF short import library.
> > The header of libuser32b.a says that it defines MessageBoxB and > __imp_MessageBoxB, but the import library file in the archive actually > defines MessageBoxA (not B). So the archive file is broken. You may want to > fix the header and try again. Yes this is how I done the alias. If you consider this invalid th...
2015 Aug 13
2
[lld] Alias in COFF short import library.
...? If you don't, take a > look a member of oldnames.lib (which comes with MSVC). That library file > defines bunch of aliases, and you can do the same thing. > > On Thu, Aug 13, 2015 at 2:25 PM, Martell Malone <martellmalone at gmail.com> > wrote: > >> The header of libuser32b.a says that it defines MessageBoxB and >>> __imp_MessageBoxB, but the import library file in the archive actually >>> defines MessageBoxA (not B). So the archive file is broken. You may want to >>> fix the header and try again. >> >> Yes this is how I done th...
2002 Apr 10
0
wine and opengl
.../usr/lib/libx11drv.so (0x40054000) libkernel32.so => /usr/lib/libkernel32.so (0x400a4000) libntdll.so => /usr/lib/libntdll.so (0x4011f000) libwine.so => /usr/lib/libwine.so (0x40212000) libm.so.6 => /lib/i686/libm.so.6 (0x40228000) libc.so.6 => /lib/i686/libc.so.6 (0x4024c000) libuser32.so => /usr/lib/libuser32.so (0x40388000) libgdi32.so => /usr/lib/libgdi32.so (0x404ad000) libwine_tsx11.so => /usr/lib/libwine_tsx11.so (0x4051a000) libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x4052e000) libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x40537000) libXrender.so.1 =>...
2017 Feb 13
3
RFC: A new llvm-dlltool driver and llvm-lib driver improvements
...essageBoxA` LIB.exe doesn't not have support for this but dlltool does. The best fit for this within the spec is PE COFF spec (Aux Format 3: Weak Externals) Mingw-w64 also uses lib prefix and .a file extensions for the library name so the driver should be different. The above example would be libuser32.a, for when shared and static versions of the same library exist there is the .dll.a variant. Issues ======= Like more of the gnu suite dlltool was not designed in one build multi target manner. We would have to introduce custom arguments to specify the target, "i686", "x86_64&quo...
2017 Feb 13
2
RFC: A new llvm-dlltool driver and llvm-lib driver improvements
...this but dlltool does. >> The best fit for this within the spec is PE COFF spec (Aux Format 3: >> Weak Externals) >> >> Mingw-w64 also uses lib prefix and .a file extensions for the library >> name so the driver should be different. The above example would be >> libuser32.a, for when shared and static versions of the same library exist >> there is the .dll.a variant. >> >> >> Issues >> ======= >> >> Like more of the gnu suite dlltool was not designed in one build multi >> target manner. >> We would have to introd...
2003 Nov 03
0
dll.so do not use import libraries
...compiled version I got ld error messages like: ./xyz relocation error ./abc undefined symbol "DefMDIChildProcA". This function is in user32.dll.so but as I could find out with "ldd abc" the user32.dll.so is nomore required by the application (strange). With the old winelibs the libuser32.so was required. I found out that the only required "dll.so"s are libwine.so and libwine_unicode.so. All "dll.so"s do not require another dll.so. Is that what it should look like? Or is this a mistake? Or have I compiled the files without a special option? -- Regards Andreas H...
2001 Dec 08
1
LoadOEMResource crash [Was: Re: Problem report: SHRINKER.ERR, fix to DEVICE_Open/CreateFileA? ]
Hi Pavel, Can you run your app under winedbg? When I run my app under winedbg, it segfaults inside the application code with a bad read access. The specific instruction it faults on is movl 0x10(%esi),%eax (aka mov [esi+0x10],eax for IDA users). I'm curious to know if your app uses the same library as mine... --Rob
2015 Feb 27
1
[LLVMdev] clang\clang++ 3.6.0 don't find C\C++ header , in windows ?
.../gcc/x86_64-w64-mingw32/4.9.1/../../../../x86_64-w64-mingw32/ bin/ld.exe: cannot find -lshell32 C:/MinGW/bin/../lib/gcc/x86_64-w64-mingw32/4.9.1/../../../../x86_64-w64-mingw32/ bin/ld.exe: skipping incompatible C:/MinGW/bin/../lib/gcc/x86_64-w64-mingw32/4.9 .1/../../../../x86_64-w64-mingw32/lib/libuser32.a when searching for -luser32 C:/MinGW/bin/../lib/gcc/x86_64-w64-mingw32/4.9.1/../../../../x86_64-w64-mingw32/ bin/ld.exe: skipping incompatible C:/MinGW/bin/../lib/gcc/x86_64-w64-mingw32/4.9 .1/../../../../x86_64-w64-mingw32/lib\libuser32.a when searching for -luser32 C:/MinGW/bin/../lib/gcc/x...
2017 Feb 13
2
RFC: A new llvm-dlltool driver and llvm-lib driver improvements
...t fit for this within the spec is PE COFF spec (Aux Format 3: >>>> Weak Externals) >>>> >>>> Mingw-w64 also uses lib prefix and .a file extensions for the library >>>> name so the driver should be different. The above example would be >>>> libuser32.a, for when shared and static versions of the same library exist >>>> there is the .dll.a variant. >>>> >>>> >>>> Issues >>>> ======= >>>> >>>> Like more of the gnu suite dlltool was not designed in one build multi...
2001 Mar 09
5
wine-20010305 rpms at my download site
Hi! I have build an rpm package of wine-20010305 (mainly for SuSE, but I think it'll work on other distris). It's available at: http://www.mahowi.de/download/ Bye, Manfred -- /"\ | PGP-Key available at Public Key Servers \ / ASCII ribbon campaign | or at "http://www.mahowi.de/" X against HTML mail | RSA: 0xC05BC0F5 * DSS: 0x4613B5CA
2015 Jul 23
2
[LLVMdev] [LLD] support for dlltool generated libs in COFF/PECOFF
...ils to fix this :) Kind Regards Martell -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150723/3ebde4d7/attachment.html> -------------- next part -------------- A non-text attachment was scrubbed... Name: libuser32.a Type: application/octet-stream Size: 2880 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150723/3ebde4d7/attachment.a> -------------- next part -------------- A non-text attachment was scrubbed... Name: user32.def Type: application/octet-stream Size:...
2002 Feb 28
0
failed to load .so lib for builtin user32.dll
...ser32.dll (which is needed by winmm.dll) not found err:module:load_library can't load winmm.dll wine: Unhandled exception, starting debugger... err:seh:EXC_DefaultHandling Unhandled exception code c0000005 flags 0 addr 0x4028c197 I have the files /usr/local/lib/libwinmm.so and /usr/local/lib/libuser32.so, and my /etc/ld.so.conf has /usr/local/lib listed and I've gone ahead and done an extra ldconfig just to make sure, but it doesn't seem to fix the problem. I'm not sure what's causing this. I went ahead and ran it through gdb to see what the backtrace looked like: Starting...
2001 Jun 22
0
Half-Life: Selected Mode is not supported by your card
...l/lib/libkernel32.so (0x400a4000) libwine.so =/usr/local/lib/libwine.so (0x40122000) libncurses.so.5 =/lib/libncurses.so.5 (0x40148000) libm.so.6 =/lib/libm.so.6 (0x40192000) libutil.so.1 =/lib/libutil.so.1 (0x401b1000) libdl.so.2 =/lib/libdl.so.2 (0x401b4000) libc.so.6 =/lib/libc.so.6 (0x401b8000) libuser32.so =/usr/local/lib/libuser32.so (0x402d5000) libgdi32.so =/usr/local/lib/libgdi32.so (0x403a9000) libwine_tsx11.so =/usr/local/lib/libwine_tsx11.so (0x40419000) libSM.so.6 =/usr/X11R6/lib/libSM.so.6 (0x40427000) libICE.so.6 =/usr/X11R6/lib/libICE.so.6 (0x40431000) libXpm.so.4 =/usr/X11R6/lib/libXpm...
2017 Feb 13
2
RFC: A new llvm-dlltool driver and llvm-lib driver improvements
...F spec (Aux Format 3: >>>>>> Weak Externals) >>>>>> >>>>>> Mingw-w64 also uses lib prefix and .a file extensions for the library >>>>>> name so the driver should be different. The above example would be >>>>>> libuser32.a, for when shared and static versions of the same library exist >>>>>> there is the .dll.a variant. >>>>>> >>>>>> >>>>>> Issues >>>>>> ======= >>>>>> >>>>>> Like more of th...
2017 Feb 14
2
RFC: A new llvm-dlltool driver and llvm-lib driver improvements
...gt;>> 3: Weak Externals) >>>>>>>> >>>>>>>> Mingw-w64 also uses lib prefix and .a file extensions for the >>>>>>>> library name so the driver should be different. The above example would be >>>>>>>> libuser32.a, for when shared and static versions of the same library exist >>>>>>>> there is the .dll.a variant. >>>>>>>> >>>>>>>> >>>>>>>> Issues >>>>>>>> ======= >>>>>>&...