source: MondoRescue/branches/stable/mondo/src/include/mr_types.h@ 1326

Last change on this file since 1326 was 1264, checked in by Bruno Cornec, 17 years ago
  • mr_exit used instead of exit
  • mr_rs_clean_conf/mr_rs_cleanup/mr_ar_clean_conf/mr_ar_cleanup added
  • compiltaion warnings suppressed
  • Addition of mr_types (for boolean with typedef)
  • struct mr_rs_conf added
  • help_screen removed (useless)
  • Property svn:eol-style set to native
File size: 317 bytes
Line 
1/*
2 * $Id$
3 *
4 * Header file of mr_types: MondoRescue Types
5 * Provided under the GPL v2
6 */
7
8#ifndef MR_TYPES_H
9#define MR_TYPES_H
10
11/**
12 * Create the illusion of a Boolean type.
13 */
14#if !defined(bool) && !defined(__cplusplus)
15typedef enum {
16 FALSE = 0,
17 TRUE
18} bool;
19#endif
20
21#endif /* MR_TYPES_H */
Note: See TracBrowser for help on using the repository browser.