xref: /haiku/src/bin/urlwrapper.rdef (revision 93a78ecaa45114d68952d08c4778f073515102f2)
1#include "urlwrapper.h"
2
3resource app_signature APP_SIGNATURE;
4/*resource app_flags B_MULTIPLE_LAUNCH | B_BACKGROUND_APP | B_ARGV_ONLY;*/
5resource app_flags B_MULTIPLE_LAUNCH | B_BACKGROUND_APP;
6
7resource(1, "BEOS:FILE_TYPES") message
8{
9#ifdef HANDLE_BOOKMARK_FILES
10	"types" =  "application/x-vnd.Be-bookmark",
11#endif
12#ifdef HANDLE_FILE
13	"types" = "application/x-vnd.Be.URL.file",
14#endif
15#ifdef HANDLE_HTTP_WGET
16	"types" = "application/x-vnd.Be.URL.http",
17#endif
18#ifdef HANDLE_QUERY
19	"types" = "application/x-vnd.Be.URL.query",
20#endif
21#ifdef HANDLE_MID_CID
22	"types" = "application/x-vnd.Be.URL.mid",
23	"types" = "application/x-vnd.Be.URL.cid",
24#endif
25#ifdef HANDLE_SH
26	"types" = "application/x-vnd.Be.URL.sh",
27#endif
28#ifdef HANDLE_BESHARE
29	"types" = "application/x-vnd.Be.URL.beshare",
30#endif
31#ifdef HANDLE_IM
32	"types" = "application/x-vnd.Be.URL.icq",
33	"types" = "application/x-vnd.Be.URL.msn",
34#endif
35#ifdef HANDLE_VLC
36	"types" = "application/x-vnd.Be.URL.mms",
37	"types" = "application/x-vnd.Be.URL.rtp",
38	"types" = "application/x-vnd.Be.URL.rtsp",
39#endif
40#ifdef HANDLE_AUDIO
41	"types" = "application/x-vnd.Be.URL.audio",
42#endif
43/* default urls */
44	"types" = "application/x-vnd.Be.URL.telnet",
45	"types" = "application/x-vnd.Be.URL.ssh",
46	"types" = "application/x-vnd.Be.URL.ftp",
47	"types" = "application/x-vnd.Be.URL.sftp",
48	"types" = "application/x-vnd.Be.URL.finger"
49};
50
51