I'm trying to compile the default sample win32 ,Hello World project . I did winegcc -m32 -o test2 test2.cpp . It runs ok , but resources are not loaded ,there is empty windows title and missing File and Help menus. What is the correct way to make also load the resources?
You'll need to use the Wine IDL Compiler (widl) to compile the resources into a separate object file (.o file). You will then need to include this file in the linking stage (since you're using winegcc to both compile and link, you'd do something like winegcc -m32 -o test2 test2.cpp resources.o).
-- Kirn Gill II Mobile (SMS only): +1 813-330-8354 <+18133308354> VoIP: +1 813-704-0420 BBM: 7B963E04 Email: segin2005@gmail.com LinkedIn: http://www.linkedin.com/pub/kirn-gill/32/49a/9a6
On Tue, Oct 11, 2016 at 3:32 AM, A B dianaxxyyzz@gmail.com wrote:
I'm trying to compile the default sample win32 ,Hello World project . I did winegcc -m32 -o test2 test2.cpp . It runs ok , but resources are not loaded ,there is empty windows title and missing File and Help menus. What is the correct way to make also load the resources?
Am 11.10.2016 um 10:32 schrieb A B:
I'm trying to compile the default sample win32 ,Hello World project . I did |winegcc -m32 -o test2 test2.cpp| . It runs ok , but resources are not loaded ,there is empty windows title and missing File and Help menus. What is the correct way to make also load the resources?
Try winemaker, it should help you with the process. At best if there is a project file (dsp)