mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-24 09:23:37 -05:00
30 lines
789 B
C
30 lines
789 B
C
/**
|
|
* @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
|