diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/include/mingw.h b/include/mingw.h index 104ca3b2e..adb810ec5 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -633,27 +633,27 @@ ULONGLONG CompatGetTickCount64(void); | |||
633 | ssize_t get_random_bytes(void *buf, ssize_t count); | 633 | ssize_t get_random_bytes(void *buf, ssize_t count); |
634 | int enumerate_links(const char *file, char *name); | 634 | int enumerate_links(const char *file, char *name); |
635 | 635 | ||
636 | int unc_root_len(const char *dir); | 636 | int unc_root_len(const char *dir) FAST_FUNC; |
637 | int root_len(const char *path); | 637 | int root_len(const char *path) FAST_FUNC; |
638 | const char *get_system_drive(void); | 638 | const char *get_system_drive(void) FAST_FUNC; |
639 | int chdir_system_drive(void); | 639 | int chdir_system_drive(void); |
640 | char *xabsolute_path(char *path); | 640 | char *xabsolute_path(char *path) FAST_FUNC; |
641 | char *get_drive_cwd(const char *path, char *buffer, int size); | 641 | char *get_drive_cwd(const char *path, char *buffer, int size) FAST_FUNC; |
642 | void fix_path_case(char *path); | 642 | void fix_path_case(char *path) FAST_FUNC; |
643 | void make_sparse(int fd, off_t start, off_t end); | 643 | void make_sparse(int fd, off_t start, off_t end) FAST_FUNC; |
644 | int terminal_mode(int reset); | 644 | int terminal_mode(int reset) FAST_FUNC; |
645 | int unix_path(const char *path); | 645 | int unix_path(const char *path) FAST_FUNC; |
646 | int has_path(const char *file); | 646 | int has_path(const char *file) FAST_FUNC; |
647 | int is_relative_path(const char *path); | 647 | int is_relative_path(const char *path) FAST_FUNC; |
648 | char *get_last_slash(const char *path); | 648 | char *get_last_slash(const char *path) FAST_FUNC; |
649 | const char *applet_to_exe(const char *name); | 649 | const char *applet_to_exe(const char *name) FAST_FUNC; |
650 | char *get_user_name(void); | 650 | char *get_user_name(void); |
651 | char *quote_arg(const char *arg); | 651 | char *quote_arg(const char *arg) FAST_FUNC; |
652 | char *find_first_executable(const char *name); | 652 | char *find_first_executable(const char *name) FAST_FUNC; |
653 | char *xappendword(const char *str, const char *word); | 653 | char *xappendword(const char *str, const char *word) FAST_FUNC; |
654 | int windows_env(void); | 654 | int windows_env(void); |
655 | void change_critical_error_dialogs(const char *newval) FAST_FUNC; | 655 | void change_critical_error_dialogs(const char *newval) FAST_FUNC; |
656 | char *exe_relative_path(const char *tail); | 656 | char *exe_relative_path(const char *tail) FAST_FUNC; |
657 | enum { | 657 | enum { |
658 | ELEVATED_PRIVILEGE = 1, | 658 | ELEVATED_PRIVILEGE = 1, |
659 | ADMIN_ENABLED = 2 | 659 | ADMIN_ENABLED = 2 |