Re: urlmon missing InternetSecurityManager

2004-07-19 Thread Lionel Ulmer
On Mon, Jul 19, 2004 at 05:19:36PM +0200, Jeroen Janssen wrote: > Any idea why this script is not in the wine tree somewhere? (tools/?) Because it was an unmanageable Python hack that worked for me after a lot of tweakings (for DirectX and QUARTZ). I can see if I can get something clean out of it

Re: urlmon missing InternetSecurityManager

2004-07-19 Thread Jeroen Janssen
>>Are there any (wine) pointers on implementing a new (stubbed) COM >> interface? >> >> > > You will need to update the corresponding urlmon.h header file too, so > that it can be used by C code. You can do this by running "make idl" in > the wine/include/ directory. Yes, I expected something like

Re: urlmon missing InternetSecurityManager

2004-07-19 Thread Robert Shearman
Jeroen Janssen wrote: Hello, It seems urlmon is missing a (stubbed) IInternetSecurityManager Interface (see also http://msdn.microsoft.com/workshop/security/szone/reference/ifaces/iinternetsecuritymanager/iinternetsecuritymanager.asp ). Since I am new to this, I was wondering how I can create a stu

Re: urlmon missing InternetSecurityManager

2004-07-19 Thread Mike McCormack
Jeroen Janssen wrote: Since I am new to this, I was wondering how I can create a stubbed implementation. As far as I can tell I need to : * update the urlmon.idl (add IInternetSecurityManager) right * create a stubbed implemenation in dlls/urlmon/; making sure the stubbed interface also gets regist

urlmon missing InternetSecurityManager

2004-07-19 Thread Jeroen Janssen
Hello, It seems urlmon is missing a (stubbed) IInternetSecurityManager Interface (see also http://msdn.microsoft.com/workshop/security/szone/reference/ifaces/iinternetsecuritymanager/iinternetsecuritymanager.asp ). Since I am new to this, I was wondering how I can create a stubbed implementation.