From: Kevin Day Date: Sun, 15 Jun 2025 05:29:09 +0000 (-0500) Subject: Update: The Featureless Make needs recurse callback. X-Git-Tag: 0.7.2~9 X-Git-Url: https://www.git.kevux.org/?a=commitdiff_plain;h=920db6c10e200a3734e52101ee9fb5f1ea775763;p=fll Update: The Featureless Make needs recurse callback. The recurse callback function parameter changed from `uint32_t` to `uint64_t`. --- diff --git a/level_3/fake/c/main/fake/do.c b/level_3/fake/c/main/fake/do.c index c95dc9a..4cbd429 100644 --- a/level_3/fake/c/main/fake/do.c +++ b/level_3/fake/c/main/fake/do.c @@ -5,7 +5,7 @@ extern "C" { #endif #ifndef _di_fake_do_copy_action_ - void fake_do_copy_action(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint32_t flag) { + void fake_do_copy_action(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint64_t flag) { if (!recurse || !recurse->state.custom) return; @@ -144,7 +144,7 @@ extern "C" { #endif // _di_fake_do_copy_action_ #ifndef _di_fake_do_copy_handle_ - void fake_do_copy_handle(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint32_t flag) { + void fake_do_copy_handle(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint64_t flag) { if (!recurse || !recurse->state.custom || F_status_set_fine(recurse->state.status) == F_interrupt) return; diff --git a/level_3/fake/c/main/fake/do.h b/level_3/fake/c/main/fake/do.h index 6e687b3..c5c6300 100644 --- a/level_3/fake/c/main/fake/do.h +++ b/level_3/fake/c/main/fake/do.h @@ -60,7 +60,7 @@ extern "C" { * @see fake_build_copy() */ #ifndef _di_fake_do_copy_action_ - extern void fake_do_copy_action(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint32_t flag); + extern void fake_do_copy_action(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint64_t flag); #endif // _di_fake_do_copy_action_ /** @@ -87,7 +87,7 @@ extern "C" { * The flags representing the action. */ #ifndef _di_fake_do_copy_handle_ - extern void fake_do_copy_handle(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint32_t flag); + extern void fake_do_copy_handle(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint64_t flag); #endif // _di_fake_do_copy_handle_ #ifdef __cplusplus