~vcs-imports/suspend/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * bootsplash.h
 *
 * Bootsplash related definitions for bootsplash.org's method
 *
 * Copyright (C) 2006 Holger Macht <holger@homac.de>
 *
 * This file is released under the GPLv2.
 *
 */

#ifndef BOOTSPLASH_H
#define BOOTSPLASH_H

int bootsplash_open(void);
int bootsplash_prepare(void);
int bootsplash_finish(void);
int bootsplash_progress(int p);
void bootsplash_switch_to(void);
void bootsplash_read_password(char *, int);
int bootsplash_dialog(const char *);

#endif /* BOOTSPLASH_H */