mirror of
https://github.com/videolan/vlc.git
synced 2024-12-04 15:26:23 +08:00
d86fd15629
* compiled with mozilla 1.4 (won't probably work with <1.4) * TODO: * - make XPCOM work (play,pause,stop buttons) * - fullscreen implementation (quite difficult on MacOSX because only * the main thread can create windows)
33 lines
756 B
R
33 lines
756 B
R
/*****************************************************************************
|
|
* VLC Plugin description for OS X
|
|
*****************************************************************************/
|
|
|
|
/* Definitions of system resource types */
|
|
|
|
/* The first string in the array is a plugin description,
|
|
* the second is the plugin name */
|
|
resource 'STR#' (126)
|
|
{
|
|
{
|
|
"A VLC test plugin... hope it goes somewhere",
|
|
"VLC plugin"
|
|
};
|
|
};
|
|
|
|
/* A description for each MIME type in resource 128 */
|
|
resource 'STR#' (127)
|
|
{
|
|
{
|
|
"Invoke scriptable sample plugin"
|
|
};
|
|
};
|
|
|
|
/* A series of pairs of strings... first MIME type, then file extension(s) */
|
|
resource 'STR#' (128,"MIME Type")
|
|
{
|
|
{
|
|
"application/vlc-plugin", ""
|
|
};
|
|
};
|
|
|