IS_Create() 공개 정적인 메소드

public static IS_Create ( ) : IntPtr
리턴 System.IntPtr
예제 #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 public EmoState()
 {
     hEmoState = EdkDll.IS_Create();
 }
예제 #2
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());
 }