1
0
mirror of https://github.com/winfsp/winfsp.git synced 2025-12-26 22:12:44 -06:00

sys,dll,inc: FSP_IOCTL_TRANSACT

This commit is contained in:
Bill Zissimopoulos
2022-05-16 21:40:01 +01:00
parent 9c1a7fb40b
commit 43af829d46
9 changed files with 977 additions and 876 deletions

View File

@@ -46,6 +46,15 @@
#define DEBUGLOGSID(fmt, Sid) ((void)0)
#endif
/* DEBUGTEST */
#if !defined(NDEBUG)
ULONG DebugRandom(VOID);
#define DEBUGTEST(Percent) \
(DebugRandom() <= (Percent) * 0x7fff / 100)
#else
#define DEBUGTEST(Percent) (TRUE)
#endif
VOID FspWksidFinalize(BOOLEAN Dynamic);
VOID FspPosixFinalize(BOOLEAN Dynamic);
VOID FspEventLogFinalize(BOOLEAN Dynamic);