1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2026-03-02 04:09:18 +00:00

adjusted include guards

This commit is contained in:
Falk Werner
2019-02-25 21:35:38 +01:00
parent af71bcbff3
commit cc38995b5f
37 changed files with 74 additions and 74 deletions

View File

@@ -1,5 +1,5 @@
#ifndef WSFS_API_H
#define WSFS_API_H
#ifndef WSFS_ADAPTER_API_H
#define WSFS_ADAPTER_API_H
#ifndef WSFS_API
#define WSFS_API

View File

@@ -1,5 +1,5 @@
#ifndef WSFS_SERVER_H
#define WSFS_SERVER_H
#ifndef WSFS_ADAPTER_SERVER_H
#define WSFS_ADAPTER_SERVER_H
#include "wsfs/adapter/api.h"

View File

@@ -1,5 +1,5 @@
#ifndef WSFS_SERVER_CONFIG_H
#define WSFS_SERVER_CONFIG_H
#ifndef WSFS_ADAPTER_SERVER_CONFIG_H
#define WSFS_ADAPTER_SERVER_CONFIG_H
#include "wsfs/adapter/api.h"

View File

@@ -1,5 +1,5 @@
#ifndef WSFS_SERVER_PROTOCOL_H
#define WSFS_SERVER_PROTOCOL_H
#ifndef WSFS_ADAPTER_SERVER_PROTOCOL_H
#define WSFS_ADAPTER_SERVER_PROTOCOL_H
#include "wsfs/adapter/api.h"

View File

@@ -1,5 +1,5 @@
#ifndef WSFSP_API_H
#define WSFSP_API_H
#ifndef WSFSP_PROVIDER_API_H
#define WSFSP_PROVIDER_API_H
#ifndef WSFSP_API
#define WSFSP_API

View File

@@ -1,5 +1,5 @@
#ifndef WSFSP_CLIENT_H
#define WSFSP_CLIENT_H
#ifndef WSFS_PROVIDER_CLIENT_H
#define WSFS_PROVIDER_CLIENT_H
#include "wsfs/provider/api.h"

View File

@@ -1,5 +1,5 @@
#ifndef WSFSP_CLIENT_PROTOCOL_H
#define WSFSP_CLIENT_PROTOCOL_H
#ifndef WSFS_PROVIDER_CLIENT_PROTOCOL_H
#define WSFS_PROVIDER_CLIENT_PROTOCOL_H
#include "wsfs/provider/api.h"

View File

@@ -1,5 +1,5 @@
#ifndef WSFSP_DIRBUFFER_H
#define WSFSP_DIRBUFFER_H
#ifndef WSFS_PROVIDER_DIRBUFFER_H
#define WSFS_PROVIDER_DIRBUFFER_H
#include <sys/types.h>
#include <sys/stat.h>

View File

@@ -1,5 +1,5 @@
#ifndef WSFSP_PROVIDER_H
#define WSFSP_PROVIDER_H
#ifndef WSFS_PROVIDER_PROVIDER_H
#define WSFS_PROVIDER_PROVIDER_H
#include <wsfs/provider/operation/lookup.h>
#include <wsfs/provider/operation/getattr.h>

View File

@@ -1,5 +1,5 @@
#ifndef WSFS_H
#define WSFS_H
#ifndef WSFS_ADAPTER_H
#define WSFS_ADAPTER_H
#include <wsfs/adapter/api.h>
#include <wsfs/adapter/server.h>

View File

@@ -1,5 +1,5 @@
#ifndef WSFSP_H
#define WSFSP_H
#ifndef WSFS_PROVIDER_H
#define WSFS_PROVIDER_H
#include <wsfs/provider/api.h>
#include <wsfs/provider/client.h>