fix compilation on win32
This commit is contained in:
parent
87f0e1de83
commit
86c444351f
2 changed files with 6 additions and 1 deletions
|
@ -469,7 +469,7 @@ static void ExtractData(char* extractor_tool, char* destination, char* scripts_p
|
|||
strcat(cmdbuf, "\"");
|
||||
#else
|
||||
if (!isatty(1)) {
|
||||
strcat(cmdbuf, "\"");
|
||||
strcat(cmdbuf, "; echo 'Press RETURN to continue...'; read\"");
|
||||
}
|
||||
#endif
|
||||
#ifdef WIN32
|
||||
|
|
|
@ -685,6 +685,11 @@ static int dirExists ( char const * const aDirPath )
|
|||
return 0 ;
|
||||
}
|
||||
|
||||
static int detectPresence ( char const * const aExecutable )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifndef TINYFD_WIN_CONSOLE_ONLY
|
||||
|
||||
static int messageBoxWinGui (
|
||||
|
|
Loading…
Add table
Reference in a new issue