a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
186 lines
4.6 KiB
C#
186 lines
4.6 KiB
C#
// THIS FILE AUTOMATICALLY GENERATED BY xpidl2cs.pl
|
|
// EDITING IS PROBABLY UNWISE
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
// a copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
// the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
//
|
|
// Copyright (c) 2007, 2008 Novell, Inc.
|
|
//
|
|
// Authors:
|
|
// Andreia Gaita (avidigal@novell.com)
|
|
//
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
|
|
namespace Mono.Mozilla {
|
|
|
|
[Guid ("436a83fa-b396-11d9-bcfa-00112478d626")]
|
|
[InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
|
|
[ComImport ()]
|
|
internal interface nsITimer {
|
|
|
|
#region nsITimer
|
|
[PreserveSigAttribute]
|
|
[MethodImpl (MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
int init ([MarshalAs (UnmanagedType.Interface) ] nsIObserver aObserver,
|
|
uint aDelay,
|
|
uint aType);
|
|
|
|
[PreserveSigAttribute]
|
|
[MethodImpl (MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
int initWithFuncCallback ( nsITimerCallbackDelegate aCallback,
|
|
IntPtr aClosure,
|
|
uint aDelay,
|
|
uint aType);
|
|
|
|
[PreserveSigAttribute]
|
|
[MethodImpl (MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
int initWithCallback ([MarshalAs (UnmanagedType.Interface) ] nsITimerCallback aCallback,
|
|
uint aDelay,
|
|
uint aType);
|
|
|
|
[PreserveSigAttribute]
|
|
[MethodImpl (MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
int cancel ();
|
|
|
|
[PreserveSigAttribute]
|
|
[MethodImpl (MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
int getDelay (out uint ret);
|
|
|
|
[PreserveSigAttribute]
|
|
[MethodImpl (MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
int setDelay (uint value);
|
|
|
|
[PreserveSigAttribute]
|
|
[MethodImpl (MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
int getType (out uint ret);
|
|
|
|
[PreserveSigAttribute]
|
|
[MethodImpl (MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
int setType (uint value);
|
|
|
|
[PreserveSigAttribute]
|
|
[MethodImpl (MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
int getClosure ( IntPtr ret);
|
|
|
|
[PreserveSigAttribute]
|
|
[MethodImpl (MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
|
int getCallback ([MarshalAs (UnmanagedType.Interface) ] out nsITimerCallback ret);
|
|
|
|
#endregion
|
|
}
|
|
|
|
|
|
internal class nsTimer {
|
|
public static nsITimer GetProxy (Mono.WebBrowser.IWebBrowser control, nsITimer obj)
|
|
{
|
|
object o = Base.GetProxyForObject (control, typeof(nsITimer).GUID, obj);
|
|
return o as nsITimer;
|
|
}
|
|
}
|
|
}
|
|
#if example
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
|
|
internal class Timer : nsITimer {
|
|
|
|
#region nsITimer
|
|
int nsITimer.init ([MarshalAs (UnmanagedType.Interface) ] nsIObserver aObserver,
|
|
uint aDelay,
|
|
uint aType)
|
|
{
|
|
return ;
|
|
}
|
|
|
|
|
|
|
|
int nsITimer.initWithFuncCallback ( nsITimerCallbackDelegate aCallback,
|
|
IntPtr aClosure,
|
|
uint aDelay,
|
|
uint aType)
|
|
{
|
|
return ;
|
|
}
|
|
|
|
|
|
|
|
int nsITimer.initWithCallback ([MarshalAs (UnmanagedType.Interface) ] nsITimerCallback aCallback,
|
|
uint aDelay,
|
|
uint aType)
|
|
{
|
|
return ;
|
|
}
|
|
|
|
|
|
|
|
int nsITimer.cancel ()
|
|
{
|
|
return ;
|
|
}
|
|
|
|
|
|
|
|
int nsITimer.getDelay (out uint ret)
|
|
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int nsITimer.setDelay (uint value)
|
|
|
|
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int nsITimer.getType (out uint ret)
|
|
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int nsITimer.setType (uint value)
|
|
|
|
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int nsITimer.getClosure ( IntPtr ret)
|
|
|
|
{
|
|
return IntPtr.Zero;
|
|
}
|
|
|
|
int nsITimer.getCallback ([MarshalAs (UnmanagedType.Interface) ] out nsITimerCallback ret)
|
|
|
|
{
|
|
return null;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
#endif
|