diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-12-08 16:14:10 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-12-08 16:14:10 +0100 |
| commit | defe27d826a797402720909a7e37ed8e1683a046 (patch) | |
| tree | 52ffd136332f536293eec8c9ede473228b3be753 /vis.h | |
| parent | 849f5fc820f54d347e0b73837c444ff61b39a8f8 (diff) | |
| download | vis-defe27d826a797402720909a7e37ed8e1683a046.tar.gz vis-defe27d826a797402720909a7e37ed8e1683a046.tar.xz | |
vis: rename some internal C function pointers
Diffstat (limited to 'vis.h')
| -rw-r--r-- | vis.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |
