Added missing function defines and removed deprecated functions

This commit is contained in:
Maschell 2017-10-29 18:28:18 +01:00
parent 5855923998
commit 218a430a4a
3 changed files with 9 additions and 7 deletions

View File

@ -1053,10 +1053,10 @@ s32 unmount_sd_fat(const char *path){
return result; return result;
} }
int mount_fake(){ s32 mount_fake(){
return sd_fat_add_device("fake", NULL, NULL, NULL); return sd_fat_add_device("fake", NULL, NULL, NULL);
} }
int unmount_fake(){ s32 unmount_fake(){
return sd_fat_remove_device ("fake", NULL,NULL,NULL); return sd_fat_remove_device ("fake", NULL,NULL,NULL);
} }

View File

@ -30,7 +30,9 @@ extern "C" {
s32 mount_sd_fat(const char *path); s32 mount_sd_fat(const char *path);
s32 unmount_sd_fat(const char *path); s32 unmount_sd_fat(const char *path);
s32 mount_fake();
s32 unmount_fake();
void deleteDevTabsNames();
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif

View File

@ -8,14 +8,14 @@ extern "C" {
#include <string.h> #include <string.h>
void log_init_(); void log_init_();
void log_deinit_(void); //void log_deinit_(void);
void log_print_(const char *str); void log_print_(const char *str);
void log_printf_(const char *format, ...); void log_printf_(const char *format, ...);
#ifdef __LOGGING__ #ifdef __LOGGING__
#define log_init() log_init_() #define log_init() log_init_()
#define log_deinit() log_deinit_() //#define log_deinit() log_deinit_()
#define log_print(str) log_print_(str) #define log_print(str) log_print_(str)
#define log_printf(FMT, ARGS...) log_printf_(FMT, ## ARGS); #define log_printf(FMT, ARGS...) log_printf_(FMT, ## ARGS);
@ -29,7 +29,7 @@ void log_printf_(const char *format, ...);
#else #else
#define log_init() #define log_init()
#define log_deinit() //#define log_deinit()
#define log_print(x) #define log_print(x)
#define log_printf(x, ...) #define log_printf(x, ...)
#define DEBUG_FUNCTION_LINE(FMT, ARGS...) #define DEBUG_FUNCTION_LINE(FMT, ARGS...)