fish: Add opaque field to the drives list for programs to use.

Not used at present.
This commit is contained in:
Richard W.M. Jones
2012-04-26 12:56:01 +01:00
parent 2cc4314ecc
commit 39d79e677b

View File

@@ -105,6 +105,11 @@ struct drv {
void (*data_free)(void*); /* function to free 'data' */
} N;
};
/* Opaque pointer. Not used by the options-parsing code, and so
* available for the program to use for any purpose.
*/
void *opaque;
};
struct mp {