blob: 71e767ce2d33791e9052577c7b860db194902ad9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Various helpers used for debugging purposes, such as functions
// logging certain flags. Since those can be rather verbose, it's
// better if we keep them separate.
#ifndef CEPH_DOKAN_DBG_H
#define CEPH_DOKAN_DBG_H
#include "include/compat.h"
#include <sstream>
#include "ceph_dokan.h"
void print_credentials(
std::ostringstream& Stream,
PDOKAN_FILE_INFO DokanFileInfo);
void print_open_params(
LPCSTR FilePath,
ACCESS_MASK AccessMode,
DWORD FlagsAndAttributes,
ULONG ShareMode,
DWORD CreationDisposition,
ULONG CreateOptions,
PDOKAN_FILE_INFO DokanFileInfo);
#endif // CEPH_DOKAN_DBG_H
|