summaryrefslogtreecommitdiff
path: root/memview.h
diff options
context:
space:
mode:
Diffstat (limited to 'memview.h')
-rw-r--r--memview.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/memview.h b/memview.h
deleted file mode 100644
index 47aab27..0000000
--- a/memview.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef CORE_MEMVIEW_H
-#define CORE_MEMVIEW_H
-
-#include <stdlib.h>
-#include <stdint.h>
-#include <stdbool.h>
-#include <SDL.h>
-
-#include "procfs.h"
-
-#ifndef PAGE_WIDTH
-#define PAGE_WIDTH (256)
-#endif
-
-#define PAGE_HEIGHT ((PAGE_SIZE * CHAR_BIT) / PAGE_WIDTH)
-
-uintptr_t to_addr(int x, int y);
-void to_pos(uintptr_t addr, int *x, int *y);
-
-struct viewer;
-struct viewer *create_viewer(int fd, SDL_Renderer *renderer);
-void destroy_viewer(struct viewer *v);
-
-bool render_pages(struct viewer *v,
- int x, int y, int width, int height, double scale, bool refresh);
-void pencil(struct viewer *v,
- double x1, double y1, double x2, double y2, bool bit);
-
-#endif