Blame src/vmount/ntapi_vms_client_disconnect.c

dd89bb
/********************************************************/
dd89bb
/*  ntapi: Native API core library                      */
dd89bb
/*  Copyright (C) 2013,2014,2015  Z. Gilboa             */
dd89bb
/*  Released under GPLv2 and GPLv3; see COPYING.NTAPI.  */
dd89bb
/********************************************************/
dd89bb
dd89bb
#include <psxtypes/psxtypes.h>
dd89bb
#include <ntapi/nt_port.h>
dd89bb
#include <ntapi/nt_vmount.h>
dd89bb
#include <ntapi/ntapi.h>
dd89bb
#include "ntapi_impl.h"
dd89bb
dd89bb
dd89bb
int32_t __stdcall __ntapi_vms_client_disconnect(
dd89bb
	__in	void *	hvms)
dd89bb
{
dd89bb
	nt_vms_daemon_msg msg;
dd89bb
dd89bb
	if (!hvms) return NT_STATUS_INVALID_HANDLE;
dd89bb
dd89bb
	/* msg */
dd89bb
	__ntapi->tt_aligned_block_memset(&msg,0,sizeof(msg));
dd89bb
dd89bb
	msg.header.msg_type	= NT_LPC_NEW_MESSAGE;
dd89bb
	msg.header.data_size	= sizeof(msg.data);
dd89bb
	msg.header.msg_size	= sizeof(msg);
dd89bb
	msg.data.msginfo.opcode	= NT_VMS_CLIENT_DISCONNECT;
dd89bb
dd89bb
	/* zw_request_wait_reply_port */
dd89bb
	__ntapi->zw_request_wait_reply_port(
dd89bb
		hvms,
dd89bb
		&msg,
dd89bb
		&msg;;
dd89bb
dd89bb
	/* close client handle */
dd89bb
	return __ntapi->zw_close(hvms);
dd89bb
}