Beispiel #1
0
        public void InstallDelegates()
        {
            EIDelegate = this.OnExternalInterface;
            SF_SetExternalInterfaceDelegate(EIDelegate);

            AllocDelegate = new SF_AllocateDelegate(this.AllocateImpl);
            SF_SetAllocateValues(AllocDelegate);

            LogDelegate = new SF_LogDelegate(this.OnLogMessage);
            SF_SetLogDelegate(LogDelegate);

            DisplayInfoDelegate = new SF_DisplayInfoDelegate(this.AllocateDisplayInfo);
            SF_SetDisplayInfoDelegate(DisplayInfoDelegate);
        }
 protected static extern void SF_SetLogDelegate(SF_LogDelegate sf_logDelegate);
 public void InstallDelegates()
 {
     EIDelegate = this.OnExternalInterface;
     SF_SetExternalInterfaceDelegate(EIDelegate);
     
     AllocDelegate = new SF_AllocateDelegate(this.AllocateImpl);
     SF_SetAllocateValues(AllocDelegate);
     
     LogDelegate = new SF_LogDelegate(this.OnLogMessage);
     SF_SetLogDelegate(LogDelegate);
     
     DisplayInfoDelegate = new SF_DisplayInfoDelegate(this.AllocateDisplayInfo);
     SF_SetDisplayInfoDelegate(DisplayInfoDelegate);
 }
 private static extern void SF_SetLogDelegate(SF_LogDelegate sf_logDelegate);
Beispiel #5
0
 protected static extern void SF_SetLogDelegate(SF_LogDelegate sf_logDelegate);
Beispiel #6
0
 private static extern void SF_SetLogDelegate(SF_LogDelegate sf_logDelegate);