Skip to content

Commit

Permalink
fixes for ufbt
Browse files Browse the repository at this point in the history
  • Loading branch information
hedger committed Nov 8, 2023
1 parent b982fa5 commit c4a9ff4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 53 deletions.
56 changes: 4 additions & 52 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,52 +1,4 @@
# Prerequisites
*.d

# Object files
*.o
*.ko
*.obj
*.elf

# Linker output
*.ilk
*.map
*.exp

# Precompiled Headers
*.gch
*.pch

# Libraries
*.lib
*.a
*.la
*.lo

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# Debug files
*.dSYM/
*.su
*.idb
*.pdb

# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf
dist/*
.vscode
.clang-format
.editorconfig
1 change: 1 addition & 0 deletions application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ App(
order=20,
fap_libs=["assets"],
fap_icon="icons/hex_10px.png",
fap_icon_assets="icons",
fap_category="Tools",
)
3 changes: 2 additions & 1 deletion helpers/hex_viewer_storage.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#pragma once

#include <stdlib.h>
#include <string.h>
#include <storage/storage.h>
Expand All @@ -17,6 +19,5 @@
void hex_viewer_save_settings(void* context);
void hex_viewer_read_settings(void* context);


bool hex_viewer_open_file(void* context, const char* file_path);
bool hex_viewer_read_file(void* context);

0 comments on commit c4a9ff4

Please sign in to comment.