Modest/source/myurl/scheme_const.h

44 lines
1.4 KiB
C
Raw Normal View History

2017-02-17 14:49:33 +03:00
/*
2017-03-14 23:44:48 +03:00
Copyright (C) 2016-2017 Alexander Borisov
2017-02-17 14:49:33 +03:00
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.
2017-02-17 14:49:33 +03:00
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.
2017-02-17 14:49:33 +03:00
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
2017-02-17 14:49:33 +03:00
Author: lex.borisov@gmail.com (Alexander Borisov)
*/
#ifndef MyURL_SCHEME_CONST_H
#define MyURL_SCHEME_CONST_H
2017-02-17 14:49:33 +03:00
#pragma once
enum myurl_scheme_id {
MyURL_SCHEME_ID_UNDEF = 0x0000,
MyURL_SCHEME_ID_ABOUT = 0x0001,
MyURL_SCHEME_ID_BLOB = 0x0002,
MyURL_SCHEME_ID_DATA = 0x0003,
MyURL_SCHEME_ID_FILE = 0x0004,
MyURL_SCHEME_ID_FILESYSTEM = 0x0005,
MyURL_SCHEME_ID_FTP = 0x0006,
MyURL_SCHEME_ID_GOPHER = 0x0007,
MyURL_SCHEME_ID_HTTP = 0x0008,
MyURL_SCHEME_ID_HTTPS = 0x0009,
MyURL_SCHEME_ID_WS = 0x000a,
MyURL_SCHEME_ID_WSS = 0x000b,
MyURL_SCHEME_ID_LAST_ENTRY = 0x000c
}
typedef myurl_scheme_id_t;
#endif /* MyURL_SCHEME_CONST_H */