~ubuntu-branches/debian/stretch/uswsusp/stretch

« back to all changes in this revision

Viewing changes to suspend-cvs20060928/splashy_funcs.h

  • Committer: Bazaar Package Importer
  • Author(s): Christian Perrier
  • Date: 2008-08-20 09:09:13 UTC
  • mfrom: (0.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080820090913-0eahue1zo8egcxls
Tags: 0.8-1.1
* Non-maintainer upload to fix pending l10n issues.
* Remove extra and useless debian/po/ff/ directory
* Debconf translation updates:
  - Japanese. Closes: #489939
  - German. Closes: #493747
  - French. Closes: #493771
  - Romanian. Closes: #493772
  - Galician. Closes: #494050
  - Finnish. Closes: #494087
  - Italian. Closes: #494096
  - Basque. Closes: #494277
  - Basque. Closes: #494277
  - Czech. Closes: #494410
  - Swedish. Closes: #494412
  - Russian. Closes: #495412
  - Portuguese. Closes: #495451
  - Spanish. Closes: #495499
  - Slovak. Closes: #495516

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * splashy.h
3
 
 *
4
 
 * Boot splash related definitions for splashy method
5
 
 *
6
 
 * Copyright (C) 2006 Tim Dijkstra <tim@famdijkstra.org>
7
 
 *
8
 
 * This file is released under the GPLv2.
9
 
 *
10
 
 */
11
 
 
12
 
#ifndef SPLASHY_FUNCS_H
13
 
#define SPLASHY_FUNCS_H
14
 
#ifdef CONFIG_SPLASHY
15
 
 
16
 
int splashy_open(void);
17
 
int splashy_finish(void);
18
 
int splashy_progress(int p);
19
 
void splashy_read_password(char *, int);
20
 
int splashy_dialog(const char *);
21
 
void splashy_print(const char *);
22
 
 
23
 
#endif
24
 
#endif /* SPLASHY_FUNCS_H */
25