~itmages/itmages/itmages-windows-extension

« back to all changes in this revision

Viewing changes to errorshandler.h

  • Committer: Dmitry
  • Date: 2012-03-11 07:56:24 UTC
  • Revision ID: git-v1:d5a30bf1fe74b46641b08d0151d39dba15b67f0e
Migrate from launchpad

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    ITmages  upload client for Windows
 
3
    Copyright (C) 2011 Dmitriy Simbiriatin <slpiv@itmages.ru>
 
4
 
 
5
    This program is free software; you can redistribute it and/or
 
6
    modify it under the terms of the GNU General Public License
 
7
    as published by the Free Software Foundation; either version 2
 
8
    of the License, or (at your option) any later version.
 
9
 
 
10
    This program is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
    GNU General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU General Public License
 
16
    along with this program; if not, write to the Free Software
 
17
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
18
 */
 
19
 
 
20
#ifndef ERRORSHANDLER_H
 
21
#define ERRORSHANDLER_H
 
22
 
 
23
typedef enum {
 
24
    ERROR_WRITEFILE = 2,
 
25
    ERROR_READFILE = 3,
 
26
    ERROR_CURL = 4,
 
27
    ERROR_MEMALLOC = 5,
 
28
    ERROR_PARSERESPONSE = 6,
 
29
    ERROR_GETIMGPATH = 7,
 
30
    ERROR_SUPPORTEDIMG = 8,
 
31
    ERROR_GETIMGSIZE = 9,
 
32
    ERROR_MAXIMGSIZE = 10,
 
33
    ERROR_OPENCLIPBOARD = 11,
 
34
    ERROR_REGISTERWNDCLS = 12,
 
35
    ERROR_GETSETTINGSDIR = 13,
 
36
    ERROR_GETCOOKIESDIR = 14,
 
37
    ERROR_READCONFFILE = 15,
 
38
    ERROR_WRITECONFFILE = 16,
 
39
    ERROR_CREATETHREAD = 17,
 
40
    ERROR_CONNECTION = 18,
 
41
    ERROR_LOGIN = 19,
 
42
    ERROR_LOGOUT = 20,
 
43
    ERROR_EMPTYPATH = 21,
 
44
    ERROR_BIGWIDTH = 22,
 
45
    ERROR_BADIMGSIZE = 23,
 
46
    ERROR_GETIMGWIDTH = 24,
 
47
    ERROR_GETIMGINFO = 25
 
48
} ItmagesErrorIds;
 
49
 
 
50
void ErrorsHandler(ItmagesErrorIds error_number);
 
51
 
 
52
#endif