Does wine NetBios can work with remote windows
application that use NetBios ?
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
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.
I made some experiments and I understand one thing.
Exaple two windows
/---\
| W1|
|control1|
| |
| /\
\- | |
|
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.
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
Function fcvt incorrect.
example:
int dec, sign;
printf("%s\n", fcvt(1.12, 2, &dec, &sign));
result:
1.12e+00
but need:
112
> 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
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
Boaz Harrosh wrote:
use --wrap in winemaker. Read about this option in the documentation
Thanks. It is work :)
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.
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
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
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,
> > 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
Can i compile my program to executable file that
can be run without wine ?
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
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
18 matches
Mail list logo