aboutsummaryrefslogtreecommitdiff
path: root/vis.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-12-08 16:14:10 +0100
committerMarc André Tanner <mat@brain-dump.org>2016-12-08 16:14:10 +0100
commitdefe27d826a797402720909a7e37ed8e1683a046 (patch)
tree52ffd136332f536293eec8c9ede473228b3be753 /vis.h
parent849f5fc820f54d347e0b73837c444ff61b39a8f8 (diff)
downloadvis-defe27d826a797402720909a7e37ed8e1683a046.tar.gz
vis-defe27d826a797402720909a7e37ed8e1683a046.tar.xz
vis: rename some internal C function pointers
Diffstat (limited to 'vis.h')
-rw-r--r--vis.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vis.h b/vis.h
index 4f1fd29..13f5454 100644
--- a/vis.h
+++ b/vis.h
@@ -28,9 +28,9 @@ typedef struct Win Win;
#endif
typedef struct {
- void (*vis_init)(Vis*);
- void (*vis_start)(Vis*);
- void (*vis_quit)(Vis*);
+ void (*init)(Vis*);
+ void (*start)(Vis*);
+ void (*quit)(Vis*);
void (*file_open)(Vis*, File*);
bool (*file_save_pre)(Vis*, File*, const char *path);
void (*file_save_post)(Vis*, File*, const char *path);