mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 08:23:05 -05:00
fix tabs to spaces
This commit is contained in:
parent
9160f1c4ce
commit
eecb7e00e2
@ -6,8 +6,8 @@
|
||||
|
||||
I am running Windows 7 and I am finding that the installed driver is not signed.::
|
||||
|
||||
Your Windows 7 OS is missing SHA-2 Code Signing Support. You need to install the following security advisory that will rectify the problem:
|
||||
https://technet.microsoft.com/en-us/library/security/3033929.aspx
|
||||
Your Windows 7 OS is missing SHA-2 Code Signing Support. You need to install the following security advisory that will rectify the problem:
|
||||
https://technet.microsoft.com/en-us/library/security/3033929.aspx
|
||||
|
||||
|
||||
Disconnecting (unmapping) a network drive does not work.::
|
||||
|
@ -1,2 +1,2 @@
|
||||
Taken from secfs.core/src/tlib codebase:
|
||||
commit 16296d2ac64a7d532b1c486dd3c44af5865d4851
|
||||
commit 16296d2ac64a7d532b1c486dd3c44af5865d4851
|
||||
|
@ -41,16 +41,16 @@ extern "C" {
|
||||
|
||||
struct fuse_opt
|
||||
{
|
||||
const char *templ;
|
||||
unsigned int offset;
|
||||
int value;
|
||||
const char *templ;
|
||||
unsigned int offset;
|
||||
int value;
|
||||
};
|
||||
|
||||
struct fuse_args
|
||||
{
|
||||
int argc;
|
||||
char **argv;
|
||||
int allocated;
|
||||
int argc;
|
||||
char **argv;
|
||||
int allocated;
|
||||
};
|
||||
|
||||
typedef int (*fuse_opt_proc_t)(void *data, const char *arg, int key,
|
||||
|
@ -74,17 +74,17 @@ static long long wcstoint(const wchar_t *p, int base, int is_signed)
|
||||
|
||||
int wmain(int argc, wchar_t **argv)
|
||||
{
|
||||
HANDLE Event;
|
||||
ULONG Timeout;
|
||||
HANDLE Event;
|
||||
ULONG Timeout;
|
||||
|
||||
if (argc != 3)
|
||||
return 1;
|
||||
if (argc != 3)
|
||||
return 1;
|
||||
|
||||
Event = (HANDLE)(UINT_PTR)wcstoint(argv[1], 16, 0);
|
||||
Timeout = wcstoint(argv[2], 16, 0);
|
||||
Event = (HANDLE)(UINT_PTR)wcstoint(argv[1], 16, 0);
|
||||
Timeout = wcstoint(argv[2], 16, 0);
|
||||
|
||||
SetEvent(Event);
|
||||
CloseHandle(Event);
|
||||
SetEvent(Event);
|
||||
CloseHandle(Event);
|
||||
|
||||
Sleep(Timeout);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user