launcher: named pipe implementation

This commit is contained in:
Bill Zissimopoulos
2016-05-11 13:31:07 -07:00
parent e82b06ae49
commit c32d05c3b6
4 changed files with 187 additions and 3 deletions

29
src/launcher/launcher.h Normal file
View File

@ -0,0 +1,29 @@
/**
* @file launcher/launcher.h
*
* @copyright 2015-2016 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
*
* You can redistribute it and/or modify it under the terms of the
* GNU Affero General Public License version 3 as published by the
* Free Software Foundation.
*
* Licensees holding a valid commercial license may use this file in
* accordance with the commercial license agreement provided with the
* software.
*/
#ifndef WINFSP_LAUNCHER_LAUNCHER_H_INCLUDED
#define WINFSP_LAUNCHER_LAUNCHER_H_INCLUDED
#include <winfsp/winfsp.h>
#include <shared/minimal.h>
#define PIPE_NAME "\\\\.\\pipe\\WinFsp.{14E7137D-22B4-437A-B0C1-D21D1BDF3767}"
#define PIPE_SRVBUF_SIZE 1024
#define PIPE_CLIBUF_SIZE 1024
#endif