]> git.sesse.net Git - vlc/blobdiff - modules/video_output/wingdi.c
Pass desktop file through config.status
[vlc] / modules / video_output / wingdi.c
index 63e953a9fcdcfecd14e8e9c25cf7417a54200ea1..25585071fd9cf967eb5974f5627e47d0e73410c1 100644 (file)
@@ -19,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
@@ -29,8 +29,9 @@
 #include <string.h>
 
 #include <vlc/vlc.h>
-#include <vlc/intf.h>
-#include <vlc/vout.h>
+#include <vlc_interface.h>
+#include <vlc_playlist.h>
+#include <vlc_vout.h>
 
 #include <commctrl.h>
 
@@ -883,7 +884,7 @@ static void EventThread ( vlc_object_t *p_event )
             switch( msg.wParam )
             {
             case VK_ESCAPE:
-                p_event->p_vlc->b_die = VLC_TRUE;
+                p_event->p_libvlc->b_die = VLC_TRUE;
                 break;
             }
             TranslateMessage( &msg );
@@ -894,7 +895,7 @@ static void EventThread ( vlc_object_t *p_event )
             {
             case 'q':
             case 'Q':
-                p_event->p_vlc->b_die = VLC_TRUE;
+                p_event->p_libvlc->b_die = VLC_TRUE;
                 break;
             }
             break;