aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h
index 46cbe03f8..88da85243 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -552,12 +552,14 @@ pid_t FAST_FUNC mingw_spawn(char **argv);
552intptr_t FAST_FUNC mingw_spawn_detach(char **argv); 552intptr_t FAST_FUNC mingw_spawn_detach(char **argv);
553intptr_t FAST_FUNC mingw_spawn_proc(const char **argv); 553intptr_t FAST_FUNC mingw_spawn_proc(const char **argv);
554int mingw_execv(const char *cmd, char *const *argv); 554int mingw_execv(const char *cmd, char *const *argv);
555int httpd_execv_detach(const char *cmd, char *const *argv);
555int mingw_execvp(const char *cmd, char *const *argv); 556int mingw_execvp(const char *cmd, char *const *argv);
556int mingw_execve(const char *cmd, char *const *argv, char *const *envp); 557int mingw_execve(const char *cmd, char *const *argv, char *const *envp);
557#define spawn mingw_spawn 558#define spawn mingw_spawn
558#define execvp mingw_execvp 559#define execvp mingw_execvp
559#define execve mingw_execve 560#define execve mingw_execve
560#define execv mingw_execv 561#define execv mingw_execv
562#define HTTPD_DETACH (8)
561 563
562#define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':') 564#define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':')
563 565