diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-02-05 14:34:52 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-02-12 09:43:44 +0000 |
commit | 86d864140bc597dce0fedf8547f4d615a920c444 (patch) | |
tree | 02dd6fbfc5cf10e0eca8bd614b54bd0ea59e065b /hw/pc.h | |
parent | 86f4a9a5c7f1d98b73520ff9f396206ebc5ddb71 (diff) |
x86: make vmmouse optional
Compile vmmouse in hwlib. Ignore failure if vmmouse device can't be
created.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/pc.h')
-rw-r--r-- | hw/pc.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -70,6 +70,8 @@ static inline void vmport_init(void) isa_create_simple("vmport"); } void vmport_register(unsigned char command, IOPortReadFunc *func, void *opaque); +void vmmouse_get_data(uint32_t *data); +void vmmouse_set_data(const uint32_t *data); /* pckbd.c */ |