Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-05-05 23:34:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-05-05 23:34:19 +0300
commitc246e0c3b6bfd4c57d12f8c3b232968b59757e26 (patch)
tree2043ae33a4acef91fa4749426930512daf3a206a /source/blender/blenlib/BLI_path_util.h
parente00142bfa73ace6ba2e66923e3c36b08b72c57ed (diff)
Prefer name 'program' over 'binary'
binary-search is confusing!
Diffstat (limited to 'source/blender/blenlib/BLI_path_util.h')
-rw-r--r--source/blender/blenlib/BLI_path_util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_path_util.h b/source/blender/blenlib/BLI_path_util.h
index 0513625772d..30b57c5f41b 100644
--- a/source/blender/blenlib/BLI_path_util.h
+++ b/source/blender/blenlib/BLI_path_util.h
@@ -79,9 +79,9 @@ const char *BLI_first_slash(const char *string) ATTR_NONNULL() ATTR_WARN_UNUSED_
void BLI_path_native_slash(char *path) ATTR_NONNULL();
#ifdef _WIN32
-bool BLI_path_binary_extensions_add_win32(char *name, const size_t maxlen);
+bool BLI_path_program_extensions_add_win32(char *name, const size_t maxlen);
#endif
-bool BLI_path_binary_search(char *fullname, const size_t maxlen, const char *name);
+bool BLI_path_program_search(char *fullname, const size_t maxlen, const char *name);
void BLI_getlastdir(const char *dir, char *last, const size_t maxlen);
bool BLI_testextensie(const char *str, const char *ext) ATTR_NONNULL() ATTR_WARN_UNUSED_RESULT;