(empfile, fileinit, lnd_init, lnd_postread, lnd_prewrite, nuk_init)
(nuk_postread, nuk_prewrite, pln_init, pln_postread, pln_prewrite) (sct_postread, sct_prewrite, shp_init, shp_postread, shp_prewrite) (ef_extend): Use void * for generic pointer parameter.
This commit is contained in:
parent
3db4e34ba4
commit
c3900f8424
9 changed files with 49 additions and 56 deletions
|
@ -39,9 +39,9 @@
|
|||
|
||||
struct fileinit {
|
||||
int ef_type;
|
||||
void (*init) (int, char *);
|
||||
int (*postread) (int, char *);
|
||||
int (*prewrite) (int, char *);
|
||||
void (*init) (int, void *);
|
||||
int (*postread) (int, void *);
|
||||
int (*prewrite) (int, void *);
|
||||
};
|
||||
|
||||
static struct fileinit fileinit[] = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue