mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/win32-vd_agent
synced 2026-01-14 12:26:04 +00:00
59 lines
1.5 KiB
C
59 lines
1.5 KiB
C
/*
|
|
Copyright (C) 2009 Red Hat, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of
|
|
the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef _H_VDCOMMON
|
|
#define _H_VDCOMMON
|
|
|
|
#pragma warning(disable:4200)
|
|
|
|
#include <windows.h>
|
|
#include "vd_agent.h"
|
|
#include "vdlog.h"
|
|
|
|
#define VD_SERVICE_PIPE_NAME TEXT("\\\\.\\pipe\\vdservicepipe")
|
|
#define VD_MESSAGE_HEADER_SIZE (sizeof(VDPipeMessage) + sizeof(VDAgentMessage))
|
|
#define VD_PIPE_BUF_SIZE (1024 * 1024)
|
|
|
|
enum {
|
|
VD_AGENT_COMMAND,
|
|
VD_AGENT_RESET,
|
|
VD_AGENT_RESET_ACK,
|
|
VD_AGENT_QUIT,
|
|
};
|
|
|
|
typedef __declspec (align(1)) struct VDPipeMessage {
|
|
uint32_t type;
|
|
uint32_t opaque;
|
|
uint8_t data[0];
|
|
} VDPipeMessage;
|
|
|
|
typedef struct VDPipeBuffer {
|
|
OVERLAPPED overlap;
|
|
DWORD start;
|
|
DWORD end;
|
|
uint8_t data[VD_PIPE_BUF_SIZE];
|
|
} VDPipeBuffer;
|
|
|
|
typedef struct VDPipeState {
|
|
HANDLE pipe;
|
|
VDPipeBuffer write;
|
|
VDPipeBuffer read;
|
|
} VDPipeState;
|
|
|
|
#endif
|
|
|