Deleted Added
full compact
splashreg.h (42503) splashreg.h (48104)
1/*-
2 * Copyright (c) 1999 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 1999 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $Id: splashreg.h,v 1.1 1999/01/09 02:44:49 yokota Exp $
26 * $Id: splashreg.h,v 1.2 1999/01/11 03:06:28 yokota Exp $
27 */
28
29#ifndef _DEV_FB_SPLASHREG_H_
30#define _DEV_FB_SPLASHREG_H_
31
32#define SPLASH_IMAGE "splash_image_data"
33
34struct video_adapter;

--- 51 unchanged lines hidden (view full) ---

86 }; \
87 DECLARE_MODULE(name, name##_mod, SI_SUB_PSEUDO, SI_ORDER_MIDDLE)
88
89/* entry point for the splash image decoder */
90int splash_register(splash_decoder_t *decoder);
91int splash_unregister(splash_decoder_t *decoder);
92
93/* entry points for the console driver */
27 */
28
29#ifndef _DEV_FB_SPLASHREG_H_
30#define _DEV_FB_SPLASHREG_H_
31
32#define SPLASH_IMAGE "splash_image_data"
33
34struct video_adapter;

--- 51 unchanged lines hidden (view full) ---

86 }; \
87 DECLARE_MODULE(name, name##_mod, SI_SUB_PSEUDO, SI_ORDER_MIDDLE)
88
89/* entry point for the splash image decoder */
90int splash_register(splash_decoder_t *decoder);
91int splash_unregister(splash_decoder_t *decoder);
92
93/* entry points for the console driver */
94int splash_init(video_adapter_t *adp, int (*callback)(int));
94int splash_init(video_adapter_t *adp, int (*callback)(int, void *),
95 void *arg);
95int splash_term(video_adapter_t *adp);
96int splash(video_adapter_t *adp, int on);
97
98/* event types for the callback function */
99#define SPLASH_INIT 0
100#define SPLASH_TERM 1
101
102#endif /* _DEV_FB_SPLASHREG_H_ */
96int splash_term(video_adapter_t *adp);
97int splash(video_adapter_t *adp, int on);
98
99/* event types for the callback function */
100#define SPLASH_INIT 0
101#define SPLASH_TERM 1
102
103#endif /* _DEV_FB_SPLASHREG_H_ */