Search
lxdream.org :: lxdream/src/dreamcast.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/dreamcast.h
changeset 15:5194dd0fdb60
prev2:42349f6ea216
next17:944f75eea496
author nkeynes
date Tue Dec 13 12:17:26 2005 +0000 (18 years ago)
permissions -rw-r--r--
last change Cleanup init config => dreamcast_config
view annotate diff log raw
     2 #ifndef dreamcast_H
     3 #define dreamcast_H 1
     5 #include <stdlib.h>
     6 #include <stdio.h>
     8 #ifdef __cplusplus
     9 extern "C" {
    10 #endif
    12 void dreamcast_init(void);
    13 void dreamcast_reset(void);
    14 void dreamcast_stop(void);
    16 #define DREAMCAST_SAVE_MAGIC "%!-DreamOn!Save\0"
    17 #define DREAMCAST_SAVE_VERSION 0x00010000
    19 void dreamcast_save_state( FILE *f );
    20 void dreamcast_load_state( FILE *f );
    22 #ifdef __cplusplus
    23 }
    24 #endif
    26 #endif /* !dream_machine_H */
.