Questions tagged [wine]

Wine is a software emulator used to run Windows software on UNIX-like operating systems. Use this tag for questions about developing software that interoperates with Wine, or developing Wine itself. Questions about *using* Wine belong elsewhere, possibly on Super User.

Wine lets you run Windows software on other operating systems. With Wine, you can install and run these applications just like you would in Windows.

Questions about using Wine to run Windows software are not appropriate for Stack Overflow. They should be posted on Super User, or possibly on a site specific to your operating system (e.g, AskUbuntu for Ubuntu users).

613 questions
2
votes
2 answers

How to compile a windows application using DLL's on Linux

I have the SDK for a USB device which works on windows. I can compile my code without problems. However, the SDK is using DLL's, and there is no support for the device on Linux. Can I compile the code on Linux with the DLL's? I've been looking at…
Anders
  • 301
  • 5
  • 12
2
votes
4 answers

Wine window is too small

After trying to build wine1.7.25 the windows which are created by wine are extremely small. And I am not able to resize them. It looks like this
kees broeksma
  • 96
  • 1
  • 7
2
votes
0 answers

libgluezilla not found installing a program with wine

I trying to install a program in ubuntu with wine and when I put the command in the termina apears the following error: libgluezilla not found. To have webbrowser support, you need libgluezilla installed I saw other questions of stack overflow which…
Marc
  • 483
  • 2
  • 9
  • 23
2
votes
0 answers

Compiling Socket Program in C with Windows API on linux using Winelib

I am using winelib to compile a windows socket code in linux platform. My idea is to understand how winelib behaves in the linker stage. I am compiling using two commands "winemaker --lower-uppercase ." and "make" in sequence. Everytime when I do a…
2
votes
3 answers

Unable to install wine on Ubuntu 14.04

I have a fresh install of Ubuntu 14.04. I have done all the updates and upgrades. When I try to install wine, it wants to uninstall (remove) many other packages. Not just one or two programs, but a big list of other packages. Any ideas what might…
Hargitay
  • 21
  • 2
2
votes
2 answers

Using input redirection with Popen in python

I need to use stream redirectiton in Popen call in python to use bat file with wine. I need make this: wine32 cmd < file.bat It works when I run it manually from terminal, however when I try to call it from python: proc = Popen('wine32 cmd <…
jmmk
  • 93
  • 1
  • 9
2
votes
0 answers

Why my thread is resumed after a WaitMessage if the event was WM_MOVE?

In Windows it happens that a thread sleeping on the WaitMessage function is resumed if there is a WM_MOVE or WM_ACTIVATE message, even though these messages are not queued (i.e., I will not get them with PeekMessage.) The question is whether this…
Leandro Caniglia
  • 14,495
  • 4
  • 29
  • 51
2
votes
2 answers

Descover IPC interface for undocumented program?

I have a program without documentation. I am wondering if there is a way to discover if it has any interface for interprocess communication. Are there any tools that search through an executable to discover such interfaces? I am interested in…
Harvey
  • 2,062
  • 2
  • 21
  • 38
2
votes
0 answers

wine and Sai.exe : HtmlHelpW HH case HH_INITIALIZE not handled

I can't run Easy Paint Tool Sai with wine. here is the command wine /home/tykayn/Documents/sai/sai.exe fixme:htmlhelp:HtmlHelpW HH case HH_INITIALIZE not handled. fixme:dwmapi:DwmIsCompositionEnabled 0xff4d044 fixme:htmlhelp:HtmlHelpW HH case…
Ty Kayn
  • 719
  • 7
  • 24
2
votes
1 answer

Compiling i386 binaries on amd64 Debian?

I'm trying to build fsthost on 64-bit Debian Stable and the last (linking) step fails: m@debian:~/Downloads/fsthost-1.5.4$ make winegcc -m32 -o fsthost32 amc_32.o jackamc_32.o fst_32.o gtk_32.o jackvst_32.o \ jfst_32.o fxb_32.o fps_32.o…
Michal Rus
  • 1,796
  • 2
  • 18
  • 27
2
votes
1 answer

Homebrew and ruby error with UTF-8 and 'split'

I used Homebrew to install an older version of Wine because the program I needed was only able to run on the older version of Wine. However, I decided to update Wine because I had learnt that the program became able to run on the newest version of…
yssup
  • 43
  • 5
2
votes
3 answers

P/Invoke and Mono: EntryPointNotFoundException

I'm trying to access the Wine implementation of some user32 functions on Kubuntu Linux. I have the Wine 1.1.31 package installed. When try running this simple test program in MonoDevelop, I get a System.EntryPointNotFoundException. using…
Zach Johnson
  • 23,678
  • 6
  • 69
  • 86
2
votes
1 answer

Using DirectX headers from Wine to compile under MingW

I have been attempting to build HLSL shader support into VLC player. I have hit a brick wall due to lack of utility methods in d3d9.h in MingW to load a .fx file and compile the shader. So under advise from VLC developers I borrowed the DX9 headers…
whatnick
  • 5,400
  • 3
  • 19
  • 35
2
votes
0 answers

Unix program interacting with win32 programs running in wine?

I am developing a program which, through the use of ReadProcessMemory and WriteProcessMemory from the kernel32 API, modifies another win32 program at runtime. I would also like to support those who run target.exe on *nix platforms through the use…
Chad Zawistowski
  • 1,876
  • 1
  • 13
  • 16
2
votes
0 answers

How to run a Bash shell script via Win32 CreateProcess through Wine?

I'm trying to make a Win32 program work on Mac through WINE. This program used to call another Win32 program as an external process using CreateProcess() API. I now want it to call a UNIX shell script on Mac through WINE. I succeeded in creating a…
kakyo
  • 10,460
  • 14
  • 76
  • 140