similar to: winelib with a dll

Displaying 20 results from an estimated 2000 matches similar to: "winelib with a dll"

2001 Aug 14
3
questions about winelib
I need to write a win32 program. However, my workstation is a Linux box. I was goingto create a cross compiler and compile my code and run it on wine... However, I heard about winelib, and allegedly I can just use winelib and compile on my linux box using good ol' gcc and it will just work. Is this true? If so how would I set that up? Where can I find the docs?
2001 Mar 09
1
winelib
Has anyone have any succes in building a Windows application, on Linux, using winelib??? I followed the steps in the online documentation and didn't work. I used winemaker to create some of the configuration files. I then ran ./configure to generate the Makefile and then I ran make. It compiled the sources fine and it also created the binary. But the binary file is nothing but a link to
2001 Nov 11
1
can I use _beginthread and _endthread in winelib ?
hi, how can I use _beginthread with winelib (I get "undefined reference") ? thanks, -- Felix Natter
2001 Jun 19
1
winelib setup problem
Any chance of some help please? I have just started trying to get WineLib working on my machine, after playing with wine for several months. I am starting slowly. The BASIC hello, world. (no graphics, no Microsoft etc) I run winemaker and configure (with -L/usr/local/lib) make generates ./hw2.spec:7: could not open .so file for advapi32.dll I am aware of the discussion in January (compiling
2001 Jul 06
2
winelib and compiling MFC
Hi, The company I work for, has asked me to use winelib to port some code, however I have a problem compiling the MFC. I run winemaker 0.5.7 with options: 'winemaker --lower-uppercase -nomfc --dll ./ > \ winemaker_output.txt' No errors in file or stderror; further winemaker accesses the correct directories. But when I run ./configure as: './configure --with-wine=/usr/bin \
2001 Apr 18
1
Runtime error with winelib and CreateMutex()
Can't find anything at goggle, so hope someone in this group can help. I've installed codeweavers-wine-20010305-1.i386.rpm on my RedHat 7.0, which put everything in /opt/wine/. I built the following program (in file hello.cpp): #include <iostream.h> #include <windows.h> int main() { INT i = 0; cout << "i = " << i << endl; HANDLE h =
2002 Jan 20
1
little problem with winelib...
hello everybody, i have a slight problem, i want to write a wrapper around win32 binary dll and use it with my *nix applications, and i have been through the winelib documentation, and spent pretty much time trying to make a working wrapper, but i can't seem to get it working (with and without prototyping the calls i seem to get many "undefined reference to '....'"'s)...
2009 Mar 26
1
Questions on winelib
Hi. I'm currently starting the process of porting a windows based gaming engine (uses the windows API),to linux. I have winelib (winemaker?) and have read through it's documentation but am still unsure what it's really for. Is it possable to use winelib to assist me in porting this engine from windows to linux,is that what it's for? If so,do I have to provide all nessesary
2001 Mar 12
1
winelib + MFC
I am trying to port an MFC app to Linux using winelib. Can someone please give me a pointer or two??? I have looked at section 4 of the online documentation and not much were mention there. Thanks for help in advane. -Carl
2001 Mar 02
3
Winelib problems
I'd like to know how to link console functions such as WriteConsoleOutputA. They are documented as implemented, and I can compile source code including these function predefinitions, but I get undefined errors when linking. I don't know which library to add to get objects linked. Thanks in advance. Ignasi Villagrasa.
2001 Jul 09
1
winelib problems with .configure
I am attempting to use winemaker on a relatively straightforward Windows App that we have. Just a little background, we started the effort by first evaluating our application in Wine itself and obtained very good results. Now, we're moving on to try and compile a version for Linux by using Winelib and running into this problem. I ran winemaker with this: winemaker --lower-all which finished
2004 Apr 12
1
Winelib rookie...
Hi! I'm trying to port a windows code to linux via winelib. After running winemaker I get the project files and run ./configure. At a certain point the following message appears on the console: checking for windef.h... configure: error: Could not find the Wine headers (windef.h) I have the windef.h file in a irectory named /usr/include/wine/windows/. Do I need to setup any environment
2008 May 04
1
Winelib and windows.h
I installed winelib and ran winemaker on my project. But running the makefile fails because it doesn't know where windows.h (or any other the other windows includes are) How do I resolve this issue? Am I supposed to set the include path to windows.h on my windows drive?
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
2001 Nov 19
3
WineLib Seg Fault?
A question for the WineLib guru's :) I am using the wine-20011108 build with Mandrake 8.0 and with this version of wine clean compiled and installed I can run several windows programs very successfully :). Then I use winemaker to create a WineLib 'so' file and the compile and link again runs clean. But when I run the resulting 'so' file using this command line: $
2001 Feb 07
2
Undefined symbols
Where could I get information about wine libraries content ? For instance, if I'm migrating a WNT console based application using winelib, which is the library I must link with object files ? I don't have this information. Thanks in advance. Ignasi Villagrasa.
2007 Mar 19
1
Winemaker - Visual Studio 6.0 package
I am trying to get a rather large C++ program written in visual studio 6.0 to work on a linux system. I have installed the wine libraries and it runs just fine using: wine <executable name> However, I would like to be able to compile the program using winemaker on my linux box. Winemaker runs smoothly. However, the makefile generated by Winemaker in the root directory has all kinds of
2001 Apr 03
2
compiling with winelib
It' s possible to statically link WineLib to my program?
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
2011 Jan 16
5
Winelib Calling POSIX function from Windows application
Suppose that I have Windows application using Code: LoadLibrary followed by Code: GetProcAddress It should be possible to load a library implemented in terms of POSIX function but I do not understand how. Should I load the dll.so file generated by winegcc or do i need a plain .dll file?[/code]