Re: export variables in dlls

2003-08-21 Thread Martin Wilck
because I'am not reading wine-devel on a daily basis. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: export variables in dlls

2003-08-18 Thread Martin Wilck
to maintain and customize than the current C code, and would actually be the adequate tool for the job. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn

Re: export variables in dlls

2003-08-10 Thread Martin Wilck
with winegcc/winewrap is on his to-do list. I have also looked into this recently and found ts hard to do right. Best thing right now is probably to write a def file manually. If you have access to a MingW/cygwin system, you can create one their with dlltool or ld. Martin -- Martin Wilck

Stuck with winelib + DLL import

2003-08-07 Thread Martin Wilck
ld.so. But I recall that this is utterly wrong. In short, I am clueless. Any hints appreciated. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http

New winsock maintainer needed

2003-03-11 Thread Martin Wilck
, Linux, and Free Software. Working with you guys has definitely been great fun and I have learned more than in years before. See you later, Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL

Re: PATCH: Get rid of superfluous dup() and close() calls.

2003-02-11 Thread Martin Wilck
code makes this hard to do then the code is broken. Asynchronous IO, broken or not, allows for hundreds of simultaneous IO operations on a single HANDLE, and therefore gets us into *resource shortage* as long as we use up an fd for each such operation. Martin -- Martin WilckPhone

Re: PATCH: Get rid of superfluous dup() and close() calls.

2003-02-11 Thread Martin Wilck
count on an fd would be possible. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: PATCH: Get rid of superfluous dup() and close() calls.

2003-02-06 Thread Martin Wilck
:-) Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: PATCH: Get rid of superfluous dup() and close() calls.

2003-02-03 Thread Martin Wilck
isn't small but it also shows that the close() calls are only in half a dozen source files. In the code that is using the Unix fd's, however, the close() calls are confusing, ugly, and easy to forget. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax

PATCH: Get rid of superfluous dup() and close() calls.

2003-01-24 Thread Martin Wilck
@@ */ } -if ((fd != -1) ((fd = dup(fd)) == -1)) return STATUS_TOO_MANY_OPENED_FILES; *unix_fd = fd; return STATUS_SUCCESS; } -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D

Re: Winsocket hanging

2002-12-13 Thread Martin Wilck
-- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

winelib + unicode

2002-12-11 Thread Martin Wilck
wouldn't it be nice to have winemaker-generated sources automatically add -fshort-wchar to the C compiler options? To make this robust, one could write a configure test for it. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409

Re: winelib + unicode

2002-12-11 Thread Martin Wilck
(Winelib User's Guide), the scripts (winemaker), etc. with them. well the configure script should probably check if -fshort-wchar is supported, add the option to CFLAGS if yes, and issue a warning if no. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax

Re: winelib + unicode

2002-12-11 Thread Martin Wilck
Am Mit, 2002-12-11 um 16.49 schrieb Dimitrie O. Paun: On December 11, 2002 10:52 am, Martin Wilck wrote: well the configure script should probably check if -fshort-wchar is supported, add the option to CFLAGS if yes, and issue a warning if no. But the problem is that winemaker will run

Re: wine/dlls/winsock/socket.c: Force SO_REUSEADDR ...

2002-12-10 Thread Martin Wilck
-- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: wine/dlls/winsock socket.c

2002-12-09 Thread Martin Wilck
sockets in the subject line and chances are I won't miss them again. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com

Re: wine/dlls/winsock/socket.c: Force SO_REUSEADDR on beforebind()/Ignore SO_DONTROUTE

2002-12-09 Thread Martin Wilck
some games were using to work around some obscure Win9x networking limitation. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu

Re: The conformance tests need you!

2002-12-04 Thread Martin Wilck
for newbies it will be pretty much impossible to figure this out. Or is there a really simple way that I just missed? Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn

Re: Fix winsock conformance test on Windows NT

2002-12-04 Thread Martin Wilck
no idea how this could happen, unless I did something wrong with the TLS stuff. However it runs on W2k, it runs on Wine, and AFAICT it's programmed to the specs. What now? Martin - Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf

Dll separation question

2002-12-04 Thread Martin Wilck
clear description of that somewhere where it's easy to find. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: strcat+strcat+strcat == baaad

2002-12-03 Thread Martin Wilck
does to speed up your own variant of the copy routine. I am not talking what you or I could or couldn't do. I am just saying Wine should rely on glibc for these things, and not try to outwit those who're doing these things all the time. Martin -- Martin WilckPhone: +49 5251 8

Re: strcat+strcat+strcat == baaad

2002-12-02 Thread Martin Wilck
; - diff_sec--; - } - - printf(Operation took %ld seconds %ld usec\n, diff_sec, diff_usec ); + printf(Operation took %07ld usec\n, diff_sec * 100 + diff_usec ); } return 0; -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax

Re: strcat+strcat+strcat == baaad

2002-12-02 Thread Martin Wilck
you are a assembler programming Guru for a certain architecture, you'll have a hard time beating them. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn

Re: The conformance tests need you!

2002-12-02 Thread Martin Wilck
currently having trouble with running stuff natively on Windows. Can anybody run the winsock test with verbose output (trace enabled) on Windows NT and send me the result ? Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz

Re: [RFC] Winelib enhancements

2002-11-28 Thread Martin Wilck
Am Don, 2002-11-28 um 11.37 schrieb David Fraser: means people won't have to keep on using VC++. Or does winemaker do this already? Yes. Actually, it produces configure and Makefile.in. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251

Re: [RFC] Winelib enhancements

2002-11-28 Thread Martin Wilck
maintainers doing the porting themselves. I understand your reasoning now. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu

Re: How to debug wineserver

2002-11-28 Thread Martin Wilck
debugging off. Starting wine with -debugmsg trace+server works quite well. Furthermore, wineserver is a true Unix program. You can run in through gdb. I often run wine normally, then start gdb and simply attach to the running wineserver process. Martin -- Martin WilckPhone: +49 5251 8

RE: Whither SwitchToThread()?

2002-11-27 Thread Martin Wilck
able to give quick feedback here because the solution was simple. -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: wine and asyncronous file i/o

2002-11-26 Thread Martin Wilck
very detailed analysis. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: Winelib Applications

2002-11-26 Thread Martin Wilck
: They only make sense to people who have already accepted as a fact that Winelib is a good thing. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http

Re: Overlapped I/O without an hEvent

2002-11-26 Thread Martin Wilck
(last paragraph): http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/synchronization_and_overlapped_input_and_output.asp In any case, this feature is strongly deprecated in the Microsoft docs. They're repeating that over and over. Martin -- Martin Wilck

RE: Overlapped I/O without an hEvent

2002-11-26 Thread Martin Wilck
= NULL; close( ovp-fd ); -if( ovp-event != INVALID_HANDLE_VALUE ) +if( ovp-event ovp-event != INVALID_HANDLE_VALUE ) NtSetEvent( ovp-event, NULL ); if ( ovp-ops-call_completion ) -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax

Re: wine and asyncronous file i/o

2002-11-26 Thread Martin Wilck
synchronous IO in most cases. You are welcome to rework Wine's overlapped IO to use Linux' new aio API - then we should catch up :-) Thank's for your effort to find a solution for my litte problem. Good to hear it works. I'll submit the patch to Alexandre. Martin -- Martin WilckPhone

Re: wine and asyncronous file i/o

2002-11-25 Thread Martin Wilck
Am Sam, 2002-11-23 um 11.54 schrieb Martin Fuchs: After investigating the problem a bit more, I found a better solution: The completition function should NOT be called with STATUS_END_OF_FILE. Passing it STATUS_END_OF_FILE is of course a bug because we have to report a DOS error code, not an

Re: wine and asyncronous file i/o

2002-11-25 Thread Martin Wilck
, and prints it to stdout. It can't hurt, although your reports on real Windows behavior are more valuable. Please tell me the exact behavior you are observing in case a and b above. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409

Re: Overlapped I/O without an hEvent

2002-11-25 Thread Martin Wilck
that wine can (easily) support this behavior, but I'm not sure. Please tell me if you think 1-3 would suffice for you. Martin PS: Please use plain-text email next time. -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1

Re: Winelib Applications

2002-11-25 Thread Martin Wilck
the native Windows apps in Wine instead? I recommend to put a statement about this on the page because I feel this is a question many people will ask themselves. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1

Re: winewrapper

2002-11-22 Thread Martin Wilck
a wine install for every little test and experiment I was making. For me it was quite ok to do a make install only in the dll subdirs where I had modified something. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf

Re: wine and asyncronous file i/o

2002-11-22 Thread Martin Wilck
-InternalHigh += result; TRACE(read %d more bytes %ld/%d so far\n,result,lpOverlapped-InternalHigh,fileio-count); -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn

Patch: winsock.h problem

2002-11-21 Thread Martin Wilck
Am Don, 2002-11-21 um 06.05 schrieb Dimitrie O. Paun: #include winsock.h #include windows.h fails miserably in Wine (but apparently works in Windows) In file included from /home/dimi/dev/wine/wine.src/include/windows.h:62, from

Configure question

2002-11-19 Thread Martin Wilck
() presence implies getpwnam() presence? Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Question: domain name

2002-11-19 Thread Martin Wilck
for exactly that purpose. Is it better to - use a Wine config key, - use the above MS key, - or use both, the Wine key overriding the MS one if set? Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto

Re: Configure question

2002-11-19 Thread Martin Wilck
figured that, too. Thanks, Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

RE: Configure question

2002-11-19 Thread Martin Wilck
for possible later use. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: msvcrt vs std incl

2002-11-19 Thread Martin Wilck
-I/home/martin/exp/include/wine/msvcrt -I. -I/home/martin/exp/include/wine test.c Using this line and WCHAR instead of wchar_t, I'm fine. It prints sizeof (WCHAR) = 2. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz

Re: wine/ programs/rundll32/rundll32.c dlls/kernel ...

2002-11-15 Thread Martin Wilck
) Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: ComputerName, take 2

2002-11-13 Thread Martin Wilck
in allocate_default_keys - namely, Dyndata\Perfstats\Statdata. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106 Paderborn http://www.fujitsu

Re: docbook (was: Re: ComputerName)

2002-11-07 Thread Martin Wilck
manpages in a single format) and less danger of the docs man pages becoming inconsistent, it'd be easy to have a wine man pages section in the WWW docs, etc. Not that I really care a lot though. I can edit troff if it's necessary. Martin -- Martin WilckPhone: +49 5251 8 15113

Re: ComputerName

2002-11-06 Thread Martin Wilck
Am Mit, 2002-11-06 um 16.54 schrieb Dmitry Timoshkov: Shouldn't be sizeof(special) above divided by sizeof(WCHAR)? Good catch, thanks. Martin

Re: ComputerName

2002-11-06 Thread Martin Wilck
Am Mit, 2002-11-06 um 16.43 schrieb Dimitrie O. Paun: Can you also please update the documentation as well (man pages, etc.)? Ok. Btw is there any specific reason why the man pages have not been converted to Docbook yet? I really dislike hand-editing troff. Martin -- Martin Wilck

docbook (was: Re: ComputerName)

2002-11-06 Thread Martin Wilck
pages. The benefit would be that the man pages would be ready for PS/PDF/HTML conversion, and could go into e.g. an appendix of the wine docs. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1

Re: GetComputerName() question

2002-11-05 Thread Martin Wilck
do about that. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: RFC: rpcss skeleton prototype #2

2002-11-05 Thread Martin Wilck
-- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: GetComputerName() question

2002-11-04 Thread Martin Wilck
that administrators can have consistent settings between Samba and Wine (btw I thought about parsing smb.conf for these entries to make additional registry editing superfluous, but this is a future issue). Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax

Re: So lets say we do it

2002-11-04 Thread Martin Wilck
0.8 release. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: GetComputerName() question

2002-10-31 Thread Martin Wilck
-- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: GetComputerName() question

2002-10-31 Thread Martin Wilck
happen at wine initializaiton time (why is this code in win32/init.c?). Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106 Paderborn http

Re: GetComputerName() question

2002-10-31 Thread Martin Wilck
. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: Versions mass-appeal

2002-10-30 Thread Martin Wilck
reporter employed in a wine-related company!). The only way to deal with that is to close the bug if it happens. For such situations I'd appreciate clear guidelines for maintainers. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz

Re: RPC test code?

2002-10-30 Thread Martin Wilck
and it works just fine. You can use thread-local storage to keep variables separate. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106 Paderborn http

GetComputerName() question

2002-10-30 Thread Martin Wilck
the wrong value (FQDN rather than NETBIOS name). A real implementation of GetComputerName() would look for the above value in the Registry and use gethostname() only as a fallback, but currently it's the other way around - why ? Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu

Re: winsock + DSTRICT

2002-10-29 Thread Martin Wilck
. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

winsock + DSTRICT

2002-10-28 Thread Martin Wilck
Hi Michael, all, here is a patch to make winsock compile without warnings without -DWINE_NO_STRICT. Comments are welcome. Martin PS Michael, will you send this stuff to wine-patches? Index: Makefile.in === RCS file:

Re: Services

2002-10-25 Thread Martin Wilck
, and doing that would IMO not raise substantial security issues. All that's needed is a working service implementation in the sense that services can be registered which wine would start automatically when it's launched. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens

Re: Services

2002-10-24 Thread Martin Wilck
, both approaches can actually coexist on the same machine. Great! Now someone just needs to start implementing security handling in Wine... Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1

Re: Services

2002-10-24 Thread Martin Wilck
is far more likely to start a separate instance of wine in his own account for editing his word files. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106

What I need (was Re: Using winbind with Wine)

2002-10-23 Thread Martin Wilck
winbind on which server to execute its RPC. Even if wine had a fully-fledged RPC implementation I doubt that would be reasonable to implement these functions on top of that, because groups and users really need to be mapped to their Unix equivalents. Comments welcome! Martin Martin Wilck

Re: Marshalling code for me to use?

2002-10-23 Thread Martin Wilck
hurt. And the IDL compiler would be usable, regardless whether it's GPL or not. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106 Paderborn http

LogonUser(), netapi work

2002-10-22 Thread Martin Wilck
be useful, although it is clear that wine won't (shouldn't) be able to change personality in the foreseeable future. Andriy, what is the status of your netapi work? Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1

Re: Marshalling code for me to use?

2002-10-22 Thread Martin Wilck
, but it can be used as a reference implementation (and maybe a source of .idl files?) What about Samba-TNG (www.dcerpc.org, www.samba-tng.org)and the sidlc compiler that is part of it? (Forgive me if that's a stupid suggestion) Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu

Services

2002-10-22 Thread Martin Wilck
there been a discussion yet how to set this up without compromising system security? Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:Martin.Wilck;Fujitsu-Siemens.com D-33106 Paderborn

Re: Error message

2002-10-14 Thread Martin Wilck
Am Mon, 2002-10-14 um 06.58 schrieb Dima: In debug level 2 it says: sock_init: shutdown() causes POLLHUP Anyone know what this can be? This is only informational. I am 99% certain it has nothing to do with the error wine is bailing out with. Martin -- Martin Wilck

Re: Load .so error

2002-10-10 Thread Martin Wilck
Winelib library containing any non-lower-case character. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: is winemaker working?

2002-10-07 Thread Martin Wilck
. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: [Controversial] Developper only CVS sandbox

2002-09-26 Thread Martin Wilck
, everyone should be happy with their favorite VC system. I just couldn't resist to respond to that statement :-) Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn

Re: [Controversial] Developper only CVS sandbox

2002-09-26 Thread Martin Wilck
working on relatively separate subtrees like D3D8. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: Wine and Sambe (was: Re: RFC: Wine and PAM integration)

2002-09-26 Thread Martin Wilck
would use -- lsarpc, winreg, and spoolss among them. Thanks, I'll have a look into that. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http

Re: Using winbind with Wine

2002-09-26 Thread Martin Wilck
-- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: Where is the specfile documented nowadays?

2002-09-25 Thread Martin Wilck
Am Mit, 2002-09-25 um 01.48 schrieb Bill Medland: (I guess we ought to do something about winemaker too; it still names things as lib.so) Can you be more specific? I thought with my latest patches these issues with winemaker were settled. Martin -- Martin WilckPhone: +49

Re: ToDo's

2002-09-25 Thread Martin Wilck
busy until the release of Windows ZXF 2016. Are there plans to go through a public voting to determine which of these we need to fix until 0.9/1.0 ? Don't get me wrong, no specific recjection against Steven's points, just a general question. Martin -- Martin WilckPhone: +49 5251 8

Re: Using winbind with Wine

2002-09-25 Thread Martin Wilck
that the Unicode string wine receives from the app reaches the server ungarbled. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu

Re: RFC: Wine and PAM integration

2002-09-24 Thread Martin Wilck
that it calls getpwnam(), getpwuid(), getgrent() and friends only. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

RFC: Winsock todo's

2002-09-24 Thread Martin Wilck
on systems that support it. (I still havent't figured out whether aio will support sockets, though). A non-winsock todo that comes to my mind is support for NT security concepts such as tokens. But that would be a big one and should probably also be postponed after 1.0 Martin -- Martin Wilck

Re: RFC: Winsock todo's

2002-09-24 Thread Martin Wilck
Am Die, 2002-09-24 um 10.55 schrieb Martin Wilck: I forgot one: There are planse to convert the HANDLE type to void* throughout wine. http://bugs.winehq.com/long_list.cgi?buglist=90 If this happens, Winsock needs to be adapted, too. Under Windows, SOCKET is an int type and HANDLE is void

Wine and Sambe (was: Re: RFC: Wine and PAM integration)

2002-09-24 Thread Martin Wilck
(correct me if I'm wrong). Of course, we might as well try to convince the Samba team to offer more functionality through winbindd itself, or submit patches for winbindd to them. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz

Using winbind with Wine

2002-09-24 Thread Martin Wilck
format, i.e. could wine pass Unicode strings from Windows applications to windbind directly? * If no, would it be possible to extend winbindd to support this without modifying the samba libraries? Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49

Re: RFC: Wine and PAM integration

2002-09-23 Thread Martin Wilck
the rest. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: more MSVCRT fun

2002-09-18 Thread Martin Wilck
the Unix calls in functions exported by these files, and then simply link the winelibwise and unixwise parts of your application. Dividing the the two worlds over source files should have other benefits as well, softwaredesignwise :-) Martin -- Martin WilckPhone: +49 5251 8

An attempt at LogonUser()

2002-09-18 Thread Martin Wilck
LookupAccountSidW(LPCWSTR,PSID,LPWSTR,LPDWORD,LPWSTR,LPDWORD,PSID_NAME_USE); #define LookupAccountSid WINELIB_NAME_AW(LookupAccountSid) -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D

Re: WineLib with MSVCRT

2002-09-17 Thread Martin Wilck
*/ +#define _WINT_T +#endif /* FIXME: there's something to do with __p__pctype and __p__pwctype */ -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http

Re: Netapi32 ??

2002-09-17 Thread Martin Wilck
the list of calls your application uses - I'll give preference to implementing them. I'll try to make a list. Thanks, Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106

Re: DefineDosDevice - ??

2002-09-17 Thread Martin Wilck
authentication (through samba or whatever), Active directory AKA LDAP authentication, etc., wine would, too. We'd just have to ensure that we don't loose too much on our way through the Unix layer. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8

Re: Netapi32 ??

2002-09-17 Thread Martin Wilck
e.g. through PAM. That would be cleaner and much easier, given that pam_winbind is available on recent samba releases. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106

Re: DefineDosDevice - ??

2002-09-17 Thread Martin Wilck
pam_winbind.so to your PAM configuration, and you're all set. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens Computers Fax: +49 5251 8 20409 Heinz-Nixdorf-Ring 1mailto:[EMAIL PROTECTED] D-33106 Paderborn http://www.fujitsu-siemens.com/primergy

Re: WineLib with MSVCRT

2002-09-17 Thread Martin Wilck
between the DLLS variable and the IMPORTS variable? No difference - just a different variable name. Look at the generated Makefiles. Elements of IMPORTS (for regedit) and the various xyz_DLLS (for winemaker-generated Makefiles) are all passed to winebuild as -l options. Martin - Martin Wilck

PATCH: make wine find winelib apps better

2002-09-17 Thread Martin Wilck
[ forwarded to wine-devel, potential for controversy ] Patch: open-builtin-exe Modified files: scheduler: process.c Log Message: Martin Wilck [EMAIL PROTECTED] Winelib apps often (almost always) have mixed upper/lower case names and are therefore never

Re: Netapi32 ??

2002-09-17 Thread Martin Wilck
Am Die, 2002-09-17 um 14.47 schrieb Andriy Palamarchuk: Agree with your idea. I'll start to look into it later. With winbind running (and the NSS switch properly configured), you can use standard glibc calls like getpwnam() and they'll return what you want. Great stuff! Martin -- Martin

Re: PATCH: make wine find winelib apps better

2002-09-17 Thread Martin Wilck
import a VC++ project, almost all components will be mixed case, and so will the targets that winemaker currently generates. That is, such applications currently can't be run (in the expected way) after a make install. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens

Re: PATCH: make wine find winelib apps better

2002-09-17 Thread Martin Wilck
Modified files: tools: winemaker Log Message: Martin Wilck [EMAIL PROTECTED]: Make all target names lower case. Index: tools/winemaker === RCS file: /home/wine/wine/tools/winemaker,v retrieving revision 1.51

Re: wine/tools winemaker (1.49 - breaks winemaker)

2002-09-11 Thread Martin Wilck
Am Mit, 2002-09-11 um 12.04 schrieb Martin Wilck: 3. After that's fixed, configure fails with Could not include the Wine headers (windef.h). Sorry, this was my own error. However, there's more to come. Martin -- Martin WilckPhone: +49 5251 8 15113 Fujitsu Siemens

  1   2   3   >