mirror of
https://github.com/PowerShell/Win32-OpenSSH.git
synced 2025-11-19 13:20:02 +01:00
17 lines
437 B
C
17 lines
437 B
C
#pragma once
|
|
#define PATH_MAX MAX_PATH
|
|
#define SSH_ASYNC_STDIN "SSH_ASYNC_STDIN"
|
|
#define SSH_ASYNC_STDOUT "SSH_ASYNC_STDOUT"
|
|
#define SSH_ASYNC_STDERR "SSH_ASYNC_STDERR"
|
|
|
|
/* removes first '/' for Windows paths that are unix styled. Ex: /c:/ab.cd */
|
|
char * sanitized_path(const char *);
|
|
|
|
void w32posix_initialize();
|
|
void w32posix_done();
|
|
|
|
char* w32_programdir();
|
|
|
|
void convertToBackslash(char *str);
|
|
void convertToForwardslash(char *str);
|