blob: 17359368780b550a9ea8388631f28a5c9382b61b [file] [log] [blame]
Stefan Leichtercc494c42008-07-26 10:29:34 +02001/*
2 * Copyright (C) 2008 Stefan Leichter
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 */
18
19#ifndef __WINE_RASERROR_H
20#define __WINE_RASERROR_H
21
22#define RASBASE 600
23#define ERROR_BUFFER_TOO_SMALL (RASBASE+3)
Detlef Riekenberge5ab43c2008-09-08 05:20:26 +020024#define ERROR_BUFFER_INVALID (RASBASE+10)
Stefan Leichtercc494c42008-07-26 10:29:34 +020025#define ERROR_INVALID_SIZE (RASBASE+32)
Paul Vriensc5112d92010-01-19 16:44:22 +010026#define ERROR_STATE_MACHINES_NOT_STARTED (RASBASE+95)
Stefan Leichter548abf32008-07-26 10:30:22 +020027#define ERROR_RASMAN_CANNOT_INITIALIZE (RASBASE+111)
Stefan Leichtercc494c42008-07-26 10:29:34 +020028
29#endif