similar to: How do i create an shared obejct file from a dll file

Displaying 20 results from an estimated 20000 matches similar to: "How do i create an shared obejct file from a dll file"

2011 Dec 18
2
I cant create a wine dll (so)
Hi First of all im not sure what info you might need in order to be able to help so please bear with me and ask for any info needed.. I'm trying to run BF3 in wine but when i try to start the game it gives me the below error: Code: err:module:import_dll Loading library d3d11.dll (which is needed by L"C:\\Games\\Battlefield3\\bf3.exe") failed (error c000007b).
2016 Dec 16
0
Wine release 2.0-rc2
The Wine development release 2.0-rc2 is now available. What's new in this release (see below for details): - Bug fixes only, we are in code freeze. The source is available from the following locations: http://dl.winehq.org/wine/source/2.0/wine-2.0-rc2.tar.bz2 http://mirrors.ibiblio.org/wine/source/2.0/wine-2.0-rc2.tar.bz2 Binary packages for various distributions will be available
2017 May 26
0
Wine release 2.9
The Wine development release 2.9 is now available. What's new in this release (see below for details): - Support for tesselation shaders in Direct3D. - Binary mode support in WebServices. - Clipboard changes detected through Xfixes. - User interface improvements in RegEdit. - Various bug fixes. The source is available from the following locations:
2002 Aug 14
2
Linux C++ program using 3rd-party DLL?
Hi, I'm working with a spectrometer at an research institute but they only have windows 16-bit dll to control the sprectrometer. The dll is documented. My question is: Can I write a linux c++ program that uses this dll with wine? On the wine webpage it says "Optional use of external vendor DLLs" but how do I do it? On a first glance I have also not found any hints on that in
2016 Nov 25
0
Wine release 1.9.24
The Wine development release 1.9.24 is now available. What's new in this release (see below for details): - Support for unordered access views in Direct3D. - Many fixes in the regression tests. - Some more improvements in HID support. - Various bug fixes. The source is available from the following locations: http://dl.winehq.org/wine/source/1.9/wine-1.9.24.tar.bz2
2020 Sep 25
0
Wine release 5.18
The Wine development release 5.18 is now available. What's new in this release (see below for details): - Vulkan shader compilation using the new vkd3d-shader library. - USER32 library converted to PE. - Console no longer requires the curses library. - Support for display modes with various orientations. - A number of syntax fixes in the WIDL compiler. - Non-recursive makefiles.
2011 Apr 06
2
creating a .dll which links to an .so
I need to get a piece of software to run under Wine and have access to a USB device. I have a driver written for linux, and I also have a Com.so file which has all of the functionality built into it to open/communicate with that USB driver. Com.so file has all of the same functions as original windows Com.DLL file. The windows application running under wine would load this modified Com.DLL
2011 Feb 09
3
World of Warcraft problems in Patch 4.0.6
Dear People I have installed wine 1.3.13 with windows 7 mode. I know that bug is old, but now with the new patch of Wow appear again the Bug is the number 24928 I have one Nvidia Gforce 450 GTS 1 GB ram DDR5 with the drive 270.18 The problem is with wine wow -d3d11 appear the bar in fair mode, and the option good and ultra are not accesible. I want to know if that problem is only mine or
2010 Jun 09
2
Help with simple dll wrapper around linux so
Ive recently got metatrader to work on linux uner wine and would now like to see if i can import a dll wrapper so i can use some code i wrote in linux. Im trying something like this (based on http://www.winehq.org/docs/winelib-guide/bindlls) : add.c: Code: int add(int a,int b) { return a+b; } add.h: > int add(int,int); WinAdd.c: WinAdd.c: Code: #include <windef.h> #include
2001 Jun 19
1
winelib with a dll
Sorry to bug you all, but I want to know if I am trying to do something impossible. I am trying to use winelib to compile an exe that links to a dll, without compiling the dll under winelib (i.e. the equivalent of simply linking in the .lib). I have a win32 DLL project (hw5) that generates a hw5.lib, hw5.dll and hw5.h under M$. I have a win32 gui exe project (hw6) that includes hw5.h, links to
2009 Dec 14
2
FlexBuilder plugin (JAVA) with native windows dll calling
Hi, I'm developping an Adobe FlexBuilder plugin (it's an Eclipse plugin). This plugin is written in Java. But it use windows dlls that was created for some features of the plugin. And I try to port my plugin on MacOSX. I've one question about wine : - In java I use System.LoadLibrary to load my dlls, does Wine can help me for loading theses dlls under MacOSX? Does wine can map these
2016 Sep 02
0
Wine release 1.9.18
The Wine development release 1.9.18 is now available. What's new in this release (see below for details): - Support for multiple kernel drivers in a single process. - More WebServices reader support. - Various improvements in joystick support. - Some more work towards the Direct3D command stream. - GDI performance improvements. - Improved IME window handling. - Compatibility
2017 Apr 13
0
Wine release 2.6
The Wine development release 2.6 is now available. What's new in this release (see below for details): - Multi-threaded command stream in Direct3D. - More Shader Model 5 instructions. - More support for 3D textures. - Better font transformations in DirectWrite. - Various bug fixes. The source is available from the following locations:
2001 May 17
2
Win dll used with a Linux executable
Hi, I would like to use a TI dll used to communicate with TMS 320C6211 DSK with my own program written under Linux. Does anybody knows if it is possible (and how) to use (link) a Windows dll in a Linux program ?? Ciao, Riccardo Cerulli-Irelli
2002 May 07
4
Putting obejct into Graph title
Hello all - If I want to put mean value of a matrix into the title or subtitle of a graph, how would I do this? For example, in a set of commands like below, > m.mean<-mean(m) > gplot (m, thresh=m.mean) > title (main="A2. Block Density of Matrix m\nplotted based on MDS", + sub="lines below mean density (**0.435**) suppressed") I want to ask [R] to put the
2009 May 24
1
directions for porting my own code using 3rd party dll
Hi I have a c++ project Im working on under windows. it uses a 3rd party library (ie, i have headers and dll). mostly for development I'd like to be able to work on it under linux. and i thought that should be easy with wine. but now i read through the Winelib User's Guide and Im somewhat lost. its talking about winemaker and bad cases of filenames, generating makefiles and stuff. Im
2009 Jan 23
6
compiling windows C++ code base using winelib
Hi, My application holds few windows exe's developed using .lib libraries. This application which got developed using VC++ is working fine when executed using wine.I want to compile the same source using winelibraries in linux. How can I include c++ header files? I can see only windows and msvcrt header files under wine? Any help would be appreciated on this C++ header stuff for wine.
2018 Jun 22
0
Wine release 3.11
The Wine development release 3.11 is now available. What's new in this release (see below for details): - More debugger support for Wow64 processes. - Support for sha256/sha384 hashes in ECDSA signatures. - Better reporting of hyper-threaded CPUs. - Improvements to the standard Task Dialog. - Various bug fixes. The source is available from the following locations:
2001 Jun 28
3
Porting with Winelib
Hi, I am looking into good way to port Windows applications to Linux and hopefully any other Unixes. I'd like to know about questions below. If anyone answer them, I'd appreciate it. 1. Can I use Winelib to port commercial application whose sources will be not disclosed ? 2. Is it possible to link Winelib statically with an application and distribute it ? 3. In case that I
2011 Aug 31
2
linux executable loading linux .so which calls windows dll
I want to write a linux .so that calls a windows .dll, which will be loaded (all by itself) as an extension to a linux executable. any tips on where to start? would it be better to start under linux using gcc + wine tools or under windows using mingw ...-> cross-compilation? not sure where to start. not sure if its possible. please advise.