Welcome to mirror list, hosted at ThFree Co, Russian Federation.

myosi.h « modest « include - github.com/lexborisov/Modest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e53d7182afd16d57234d9b1de6ba16e814740d51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
 Copyright (C) 2016 Alexander Borisov
 
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.
 
 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 Lesser General Public License for more details.
 
 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
 Author: lex.borisov@gmail.com (Alexander Borisov)
*/

#ifndef MODEST_MYOSI_H
#define MODEST_MYOSI_H
#pragma once

#include <myhtml/myhtml.h>
#include <mycss/mycss.h>

#ifdef __cplusplus
extern "C" {
#endif

// base
/*
 Very important!!!
 
 for myhtml             0..00ffff;      MyHTML_STATUS_OK    == 0x000000
 for mycss and modules  010000..01ffff; MyCSS_STATUS_OK     == 0x000000
 for modest             020000..02ffff; MODEST_STATUS_OK    == 0x000000
 for myrender           030000..03ffff; MyRENDER_STATUS_OK  == 0x000000
 for mydom              040000..04ffff; MyDOM_STATUS_OK     == 0x000000
 for mynetwork          050000..05ffff; MyNETWORK_STATUS_OK == 0x000000
 for myecma             060000..06ffff; MyECMA_STATUS_OK    == 0x000000
 for myfont             070000..07ffff; MyFONT_STATUS_OK    == 0x000000
 not occupied           080000..
*/
enum modest_status {
    MODEST_STATUS_OK                             = 0x000000,
    MODEST_STATUS_ERROR                          = 0x020000,
    MODEST_STATUS_ERROR_MEMORY_ALLOCATION        = 0x020001,
    MODEST_STATUS_ERROR_MNODE_CREATE             = 0x020102,
    MODEST_STATUS_ERROR_MNODE_INIT               = 0x020103,
    MODEST_STATUS_ERROR_MNODE_NODE_ADD           = 0x020104,
    MODEST_STATUS_ERROR_STYLESHEET_CREATE        = 0x020110,
    MODEST_STATUS_ERROR_STYLESHEET_INIT          = 0x020111,
    MODEST_STATUS_ERROR_STYLESHEET_NODE_ADD      = 0x020112,
    MODEST_STATUS_ERROR_STYLE_TYPE_CREATE        = 0x020120,
    MODEST_STATUS_ERROR_STYLE_TYPE_NODE_ADD      = 0x020121,
    MODEST_STATUS_ERROR_STYLE_DECLARATION_CREATE = 0x020122,
    MODEST_STATUS_ERROR_STYLE_DECLARATION_INIT   = 0x020123,
    MODEST_STATUS_ERROR_AVL_TREE_CREATE          = 0x020124,
    MODEST_STATUS_ERROR_AVL_TREE_INIT            = 0x020125,
}
typedef modest_status_t;

typedef struct modest modest_t;
typedef struct modest_node modest_node_t;
typedef struct modest_style_sheet modest_style_sheet_t;

#ifdef __cplusplus
} /* extern "C" */
#endif

#endif /* MODEST_MYOSI_H */