2009-11-18 23:05:30 -02:00
|
|
|
/*
|
2010-05-12 16:34:42 -03:00
|
|
|
* QError Module
|
2009-11-18 23:05:30 -02:00
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Luiz Capitulino <lcapitulino@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
|
|
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
|
|
*/
|
|
|
|
#ifndef QERROR_H
|
|
|
|
#define QERROR_H
|
|
|
|
|
|
|
|
/*
|
2015-03-17 14:29:59 +01:00
|
|
|
* These macros will go away, please don't use in new code, and do not
|
|
|
|
* add new ones!
|
2009-11-18 23:05:30 -02:00
|
|
|
*/
|
2012-01-18 14:40:52 +00:00
|
|
|
|
2010-03-25 17:22:33 +01:00
|
|
|
#define QERR_INVALID_PARAMETER_VALUE \
|
2015-03-17 11:54:50 +01:00
|
|
|
"Parameter '%s' expects %s"
|
2010-03-25 17:22:33 +01:00
|
|
|
|
2009-11-26 22:58:57 -02:00
|
|
|
#define QERR_MISSING_PARAMETER \
|
2015-03-17 11:54:50 +01:00
|
|
|
"Parameter '%s' is missing"
|
2009-11-26 22:58:57 -02:00
|
|
|
|
2009-11-18 23:05:30 -02:00
|
|
|
#endif /* QERROR_H */
|