C decls on GDISP functions
This commit is contained in:
parent
4886403bc6
commit
9f720b1f12
1 changed files with 9 additions and 3 deletions
|
@ -617,9 +617,15 @@ typedef struct GDISPVMT {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Routines needed by the general driver VMT
|
// Routines needed by the general driver VMT
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
bool_t _gdispInitDriver(GDriver *g, unsigned driverinstance, unsigned systeminstance);
|
bool_t _gdispInitDriver(GDriver *g, unsigned driverinstance, unsigned systeminstance);
|
||||||
void _gdispPostInitDriver(GDriver *g);
|
void _gdispPostInitDriver(GDriver *g);
|
||||||
void _gdispDeInitDriver(GDriver *g);
|
void _gdispDeInitDriver(GDriver *g);
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// Build the VMT
|
// Build the VMT
|
||||||
const GDISPVMT const GDISP_DRIVER_VMT[1] = {{
|
const GDISPVMT const GDISP_DRIVER_VMT[1] = {{
|
||||||
|
|
Loading…
Add table
Reference in a new issue