예제 #1
0
파일: Libuv.cs 프로젝트: toomasz/emitter
 public static extern int uv_shutdown(UvShutdownReq req,UvStreamHandle handle,uv_shutdown_cb cb);
예제 #2
0
파일: Libuv.cs 프로젝트: toomasz/emitter
 public void shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb)
 {
     req.Validate();
     handle.Validate();
     Check(_uv_shutdown(req, handle, cb));
 }