Changeset 56473 in vbox for trunk/src/VBox/GuestHost/OpenGL/spu_loader/dispatchheader.py
- Timestamp:
- Jun 17, 2015 11:08:31 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/spu_loader/dispatchheader.py
r15532 r56473 49 49 print 'struct _copy_list_node;' 50 50 print '' 51 print '/* Prototype for SPU internal state load/unload callbacks. */' 52 print '' 53 print 'typedef int (*SPUStateFunc_t)(void *);' 54 print '' 51 55 print '/* The SPU dispatch table */' 52 56 print 'typedef struct _spu_dispatch_table {' … … 60 64 int mark; 61 65 void *server; 66 SPUStateFunc_t spu_save_state; /* Save SPU internal state callback (optional) */ 67 SPUStateFunc_t spu_load_state; /* Load SPU internal state callback (optional) */ 62 68 } SPUDispatchTable; 63 69
Note:
See TracChangeset
for help on using the changeset viewer.