registry.o(.text+0x2e): In function `CreateKey(char const*)':
: undefined reference to `RegCreateKeyA'
registry.o(.text+0x58): In function `CreateKey(char const*)':
: undefined reference to `RegQueryValueExA'
registry.o(.text+0x8f): In function `CreateKey(char const*)':
: undefined reference to `RegQueryValueExA'
registry.o(.text+0xa5): In function `CreateKey(char const*)':
: undefined reference to `MessageBoxA'
collect2: ld returned 1 exit status
[root@udp015809uds Wine2]# wineg++ -lwine registry.o registry_wrap.o -o registry.out
// program runs okay.
For information, I need to use g++ in order to assimilate wine lib framework to SWIG, to generate Win32 wrappers in C# for mono.
Thanks.