]> git.sesse.net Git - vlc/blob - mozilla/vlc.r
* Added and fixed .cvsignore files.
[vlc] / mozilla / vlc.r
1 /*****************************************************************************
2  * VLC Plugin description for OS X
3  *****************************************************************************/
4
5 /* Definitions of system resource types */
6 #include <Types.r>
7
8 /* The first string in the array is a plugin description,
9  * the second is the plugin name */
10 resource 'STR#' (126)
11 {
12     {
13         "A VLC test plugin... hope it goes somewhere",
14         "VLC plugin"
15     };
16 };
17
18 /* A description for each MIME type in resource 128 */
19 resource 'STR#' (127)
20 {
21     {
22         "Invoke scriptable sample plugin"
23     };
24 };
25
26 /* A series of pairs of strings... first MIME type, then file extension(s) */
27 resource 'STR#' (128,"MIME Type")
28 {
29     {
30         "application/vlc-plugin", ""
31     };
32 };
33