NetBios

2004-03-24 Thread flyker
Does wine NetBios can work with remote windows application that use NetBios ?

Fail load module

2004-03-15 Thread flyker
Problem: The wphsesam.dll linked with libssvlux.so Contents libssvlux.def: LIBRARY libssvlux.so EXPORTS [EMAIL PROTECTED] @1 [EMAIL PROTECTED] @2 [EMAIL PROTECTED] @3 [EMAIL PROTECTED] @4 [EMAIL PROTECTED] @5 [EMAIL PROTECTED] @6 [EMAIL PROTECTED] @7 [EMAIL PROTECTED] @8

Fonts

2003-11-21 Thread flyker
I try to find a good font for application. But all linux fonts looks not so good. The best font that I found is cronyx, but it is not support european code page. Does anybody know where I can find a font like cronyx ? Thanks.

Redrawing windows

2003-11-20 Thread flyker
I made some experiments and I understand one thing. Exaple two windows /---\ | W1| |control1| | | | /\ \- | | |

How to speed up drawing controls ?

2003-11-20 Thread flyker
The drawing speed of window controls and windows is very slow under wine. I set option "PerfectGraphics" = "Y" but it is still slow. May be it is not so good optimised ? Is there other way to improve performance ? Thanks.

Re: fcvt

2003-11-12 Thread flyker
Uwe Bonnes wrote: "flyker" == flyker <[EMAIL PROTECTED]> writes: flyker> Function fcvt incorrect. example: int dec, sign; printf("%s\n", flyker> fcvt(1.12, 2, &dec, &sign)); flyker> result: 1.12e+00 flyker> but need: 1

fcvt

2003-11-12 Thread flyker
Function fcvt incorrect. example: int dec, sign; printf("%s\n", fcvt(1.12, 2, &dec, &sign)); result: 1.12e+00 but need: 112

Re: asm help

2003-11-12 Thread flyker
> BOOL WINAPI > _InitCommonControlsEx(WINGS_INITCOMMONCONTROLSEX* lpInitCtrls) > { > if(!dwLPA_InitCommonControlsEx) > { >return FALSE; > } else { >return dwLPA_InitCommonControlsEx(lpInitCtrls); > } > } > > > The "jmp" is an optimization step, where the new function is called with

asm help

2003-11-11 Thread flyker
Can anybody help me write the function for Linux : __declspec(naked) BOOL WINAPI _InitCommonControlsEx(INITCOMMONCONTROLSEX* lpInitCtrls) { if(!dwLPA_InitCommonControlsEx) { __asm mov eax, 0 __asm ret 4 } else { __asm jmp dwLPA_InitCommonControlsEx } } May

Re: Serious Bug

2003-10-29 Thread flyker
Boaz Harrosh wrote: use --wrap in winemaker. Read about this option in the documentation Thanks. It is work :)

Re: Serious Bug

2003-10-29 Thread flyker
Vincent Béron wrote: Huh? Works fine here cross-compiled with mingw. Even added 2 printf (one to the constructor, the other in WinMain), and the constructor one is called first (as it should be). Vincent RedHat 9.0, gcc and winelib. Of course constructor first.

Serious Bug

2003-10-29 Thread flyker
The simple test crashes wine. And i think many other commands in constructor A() may crash wine. test.cpp: #include #include class A { public: A(); }; A::A() { LoadLibrary("user32.dll"); // all ok user32.dll is present } A a; int WinMain(HINSTANCE hInst, HINSTANCE, LPSTR szCmdLine, int nCmdSh

Segmentation fault

2003-10-28 Thread flyker
Under Windows my program exe file is about 6Mb. Under Linux and Wine it is about 50Mb (.so file). It is normal ? And Wine makes Segmentation fault on initialising global variables of my program. #1 0x40bb0116 in __static_initialization_and_destruction_0 (__initialize_p=1, __priority=65535) at m

need some modifications in ras.h

2003-10-22 Thread flyker
Please add this code in ras.h Thanks. DECL_WINELIB_TYPE_AW(LPRASENTRY) /* Enumerates intermediate states to a connection. (See RasDial) */ #define RASCS_PAUSED 0x1000 #define RASCS_DONE 0x2000 typedef enum tagRASCONNSTATE { RASCS_OpenPort = 0, RASCS_PortOpened, RASCS_ConnectDevice,

Re: How to run program without wine ?

2003-09-25 Thread flyker
> > Can i compile my program to executable file that can be run without wine ? > > No. > > -- > Dimi. > > Hmmm Than i don't see any reason to compile program using winelib. What is the difference between wine program.exe and wine program.exe.so ? I think the goal of winelib is to make independ

How to run program without wine ?

2003-09-25 Thread flyker
Can i compile my program to executable file that can be run without wine ?

wrc parse error

2003-09-19 Thread flyker
resource.h: #define ID_MCODE 1024 #define ID_MCODE_1 ID_MCODE+1 The resource file generated by MSVC contains: / // // Dialog Info // RDSrvSheet DLGINIT BEGIN ID_MCODE_1, 0x403, 1, 0 // parse error in this string "\0

Wine 20030911 trouble

2003-09-18 Thread flyker
After install version 20030911 i run very simply program compiled with wine and after it the system (RedHat 9.0) become very slow, it does not respond keyboard and mouse and it much use hard disk. I think it alloc memory in cycle. After some time the system kill wine. Installation witnout nptl. Pr