diff options
author | 2008-03-03 01:51:31 +0000 | |
---|---|---|
committer | 2008-03-03 01:51:31 +0000 | |
commit | e31f9a631301dace92853014f9c8a909f7e02d3e (patch) | |
tree | 7a628da91c1e779225f87c96f5b80373e8496f38 /src/lib | |
parent | 05702939cde6179483f2b0f586ec1fb696933e41 (diff) |
Normalized function pointer typedefs: they are now all
suffixed with _func. Did this throughout the core and
drivers I was familiar with.
Fixed gcc compiler error with recent render.c changes.
gcc does not like explicit (int) casts on float or
double functions. This is fracking annoying and stupid,
but there you have it.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/util/chd.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/util/chd.h b/src/lib/util/chd.h index 4559f31bcfa..f6aef5d8da3 100644 --- a/src/lib/util/chd.h +++ b/src/lib/util/chd.h @@ -176,10 +176,6 @@ typedef enum _chd_error chd_error; typedef struct _chd_file chd_file; -/* progress callback function */ -typedef void (*chd_progress_printf)(const char *format, ...); - - /* extract header structure (NOT the on-disk header structure) */ typedef struct _chd_header chd_header; struct _chd_header |