]> git.proxmox.com Git - ceph.git/blame - ceph/src/dokan/dbg.h
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / dokan / dbg.h
CommitLineData
f67539c2
TL
1// Various helpers used for debugging purposes, such as functions
2// logging certain flags. Since those can be rather verbose, it's
3// better if we keep them separate.
4
5#ifndef CEPH_DOKAN_DBG_H
6#define CEPH_DOKAN_DBG_H
7
8#include "include/compat.h"
9
10#include <sstream>
11
12#include "ceph_dokan.h"
13
14void print_credentials(
15 std::ostringstream& Stream,
16 PDOKAN_FILE_INFO DokanFileInfo);
17void print_open_params(
18 LPCSTR FilePath,
19 ACCESS_MASK AccessMode,
20 DWORD FlagsAndAttributes,
21 ULONG ShareMode,
22 DWORD CreationDisposition,
23 ULONG CreateOptions,
24 PDOKAN_FILE_INFO DokanFileInfo);
25
26#endif // CEPH_DOKAN_DBG_H