IS_Copy() public static method

public static IS_Copy ( IntPtr a, IntPtr b ) : void
a System.IntPtr
b System.IntPtr
return void
示例#1
0
 /// <summary>
 /// Copy constructor
 /// </summary>
 /// <param name="es">EmoState to be copied</param>
 public EmoState(EmoState es)
 {
     this.hEmoState = EdkDll.IS_Create();
     EdkDll.IS_Copy(this.hEmoState, es.GetHandle());
 }