Hello,
First of all thank you everybody for making a b'ful system!
Please lemmi tell about what I am trying here.
OS: Win2K
Using Cygwin for building VLC-0.7.2
Followed "How to write an interface plugin" section of "VLC media player API Documentation" and I could write a module of my own which has main "Open", "Run", "Close" and some other routines. (Actually copied hotkey.c file and removed the hotkey's personalized code inside the routines.)
Previously for checking purpose I had empty Open, Run and close routines. After following steps as in "Arranging for your Module to get Compiled" and I could automatically get Makefile etc correctly. Then I did many changes in the MyOwnModule.cpp file but "make" does not seem to do anything. I am actually a windows user and so don't know much of unix commands except basic make, make clean etc.
Following is what I get when I do make:
...
...
...
make[4]: Leaving directory `/cygdrive/d/work/vlc-0.7.2/modules/misc/playlist'
make[3]: Leaving directory `/cygdrive/d/work/vlc-0.7.2/modules/misc/playlist'
make[2]: Leaving directory `/cygdrive/d/work/vlc-0.7.2/modules/misc/playlist'
Making all in MyOwnModule
make[2]: Entering directory `/cygdrive/d/work/vlc-0.7.2/modules/misc/MyOwnModule'
make all-recursive
make[3]: Entering directory `/cygdrive/d/work/vlc-0.7.2/modules/misc/MyOwnModule'
make[4]: Entering directory `/cygdrive/d/work/vlc-0.7.2/modules/misc/MyOwnModule'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/cygdrive/d/work/vlc-0.7.2/modules/misc/MyOwnModule'
make[3]: Leaving directory `/cygdrive/d/work/vlc-0.7.2/modules/misc/MyOwnModule'
make[2]: Leaving directory `/cygdrive/d/work/vlc-0.7.2/modules/misc/MyOwnModule'
make[2]: Entering directory `/cygdrive/d/work/vlc-0.7.2/modules/misc'
make[2]: Nothing to be done for `all-am'.
make[2]: Leaving directory `/cygdrive/d/work/vlc-0.7.2/modules/misc'
make[1]: Leaving directory `/cygdrive/d/work/vlc-0.7.2/modules/misc'
Prashant@HJN /cygdrive/d/work/vlc-0.7.2/modules/misc
$
I purposely added wrong statements but make not giving error.
Please let me know if I am missing something.
Please let me know if there is any documentation for guys like me who are doing R&D over VLC. Later on I want to use the directX in the same module.
One more query:
I could add my own menu item in the VLC's menu. I want to show a dialog box with combo box, and some other controls over it. Please let me know if there is any documentation over this.