Blame src/tty/ntapi_tty_query_information_server.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_tty.h>
dd89bb
#include <ntapi/ntapi.h>
dd89bb
#include "ntapi_impl.h"
dd89bb
dd89bb
int32_t __stdcall __ntapi_tty_query_information_server(
dd89bb
	__in	void *			hport,
dd89bb
	__in	nt_tty_server_info *	srvinfo)
dd89bb
{
dd89bb
	int32_t		  status;
dd89bb
	nt_tty_server_msg msg;
dd89bb
dd89bb
	hport = hport ? hport : __ntapi_internals()->hport_tty_session;
dd89bb
dd89bb
	__ntapi->tt_aligned_block_memset(
dd89bb
		&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.ttyinfo.opcode	= NT_TTY_QUERY_INFORMATION_SERVER;
dd89bb
dd89bb
	if ((status = __ntapi->zw_request_wait_reply_port(hport,&msg,&msg)))
dd89bb
		return status;
dd89bb
	else if (msg.data.ttyinfo.status)
dd89bb
		return msg.data.ttyinfo.status;
dd89bb
dd89bb
	__ntapi->tt_aligned_block_memcpy(
dd89bb
		(uintptr_t *)srvinfo,
dd89bb
		(uintptr_t *)&(msg.data.srvinfo),
dd89bb
		sizeof(*srvinfo));
dd89bb
dd89bb
	return NT_STATUS_SUCCESS;
dd89bb
}