d4d87aa6a8
* SubGhz: add new method of obtaining a manufactory code subghz_protocol_keeloq_common_magic_xor_type1_learning * TextInput: checking for a lock on a file with the same name * TextInput: fix checking for a lock on a file with the same name * Assets: rename and recompile * TextInput: added picture and timer to turn off blob * TextInput: Fix graphics * TextInput: fix validator * Validators: Add validator is file * TextInput: fix callback validator_is_file_alloc * SubGhz: add propocol GNS (dimamic), Beninca/Alcatic, Elmes * SubGhz: fix function description * Gui: correct timer routine on deallocation * Format sources Co-authored-by: あく <alleteam@gmail.com>
20 lines
425 B
C
20 lines
425 B
C
#pragma once
|
|
|
|
// #include <gui/view.h>
|
|
#include <m-string.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
typedef struct ValidatorIsFile ValidatorIsFile;
|
|
|
|
ValidatorIsFile*
|
|
validator_is_file_alloc_init(const char* app_path_folder, const char* app_extension);
|
|
|
|
void validator_is_file_free(ValidatorIsFile* instance);
|
|
|
|
bool validator_is_file_callback(const char* text, string_t error, void* context);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |