コード例 #1
0
 public NativeEventDefinition(string name, string format, INativeEventRegistry.BuildEventDelegate builder, bool badReturnValue)
 {
     this.Name           = name;
     this.Format         = format;
     this.Builder        = builder;
     this.BadReturnValue = badReturnValue;
 }
コード例 #2
0
 public void Add(string name, string format, INativeEventRegistry.BuildEventDelegate builderDelegate, bool badReturnValue)
 {
     this.Add(name, new NativeEventDefinition(name, format, builderDelegate, badReturnValue));
 }