1 #ifndef VSF_HTTP_MSG_H
2 #define VSF_HTTP_MSG_H
3 
4 struct mystr;
5 
6 void vsf_http_messages_load();
7 
8 enum EVSFHttpMsgType
9 {
10   kVSFHttpMsgType403Serv = 1,
11   kVSFHttpMsgType403,
12   kVSFHttpMsgType404,
13   kVSFHttpMsgType200Browse
14 };
15 
16 extern struct mystr msg_browse_line;
17 
18 const char* vsf_http_messages_get(const enum EVSFHttpMsgType p_msg_type);
19 
20 
21 #endif /* VSF_HTTP_MSG_H */
22 
23