Changeset f3bcd927cd924fc64418b5dbf5cce31f8b483553

Show
Ignore:
Timestamp:
04/12/03 23:43:27 (5 years ago)
Author:
Cyril Deguet <asmax@videolan.org>
git-committer:
Cyril Deguet <asmax@videolan.org> 1050183807 +0000
git-parent:

[84b3b12b3b04a939abac1e8c0221bfafe928cb09]

git-author:
Cyril Deguet <asmax@videolan.org> 1050183807 +0000
Message:

* at last made the skin module compile under linux !

It does absolutely nothing, but it compiles ;)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • config.in

    r5023130 rf3bcd92  
    1616bool 'GTK2 support' CONFIG_GTK2 
    1717dep_bool '   Gnome2 support' CONFIG_GNOME2 $CONFIG_GTK2 
    18 bool 'Win32 skins module' CONFIG_SKINS 
     18bool 'Skins module' CONFIG_SKINS 
    1919bool 'Familiar GTK+ support' CONFIG_FAMILIAR 
    2020bool 'wxWindows support' CONFIG_WXWINDOWS 
  • configure.ac.in

    rbbebf15 rf3bcd92  
    23062306    CPPFLAGS_skins="${CPPFLAGS_skins} -O2 -fno-rtti -Imodules/gui/skins -Imodules/gui/skins/src -Imodules/gui/skins/win32 -Imodules/gui/skins/controls" 
    23072307    LDFLAGS_skins="${LDFLAGS_skins} -lstdc++ -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32 -lmsimg32" 
     2308  else 
     2309    PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0]) 
     2310    PLUGINS="${PLUGINS} skins" 
     2311    CPPFLAGS_skins="${CPPFLAGS_skins} -O2 -fno-rtti -Imodules/gui/skins -Imodules/gui/skins/src -Imodules/gui/skins/gtk2 -Imodules/gui/skins/controls -Imodules/gui/skins/parser ${GTK2_CFLAGS}" 
     2312    LDFLAGS_skins="${LDFLAGS_skins} -lstdc++  ${GTK2_LIBS}" 
    23082313  fi 
    23092314fi 
  • modules/gui/skins/Modules.am

    rf6982bd rf3bcd92  
    7878    modules/gui/skins/win32/win32_window.cpp \ 
    7979    modules/gui/skins/win32/win32_window.h \ 
     80    \ 
     81    modules/gui/skins/gtk2/gtk2_api.cpp \ 
     82    modules/gui/skins/gtk2/gtk2_bitmap.cpp \ 
     83    modules/gui/skins/gtk2/gtk2_bitmap.h \ 
     84    modules/gui/skins/gtk2/gtk2_dialog.cpp \ 
     85    modules/gui/skins/gtk2/gtk2_dialog.h \ 
     86    modules/gui/skins/gtk2/gtk2_dragdrop.cpp \ 
     87    modules/gui/skins/gtk2/gtk2_dragdrop.h \ 
     88    modules/gui/skins/gtk2/gtk2_event.cpp \ 
     89    modules/gui/skins/gtk2/gtk2_event.h \ 
     90    modules/gui/skins/gtk2/gtk2_font.cpp \ 
     91    modules/gui/skins/gtk2/gtk2_font.h \ 
     92    modules/gui/skins/gtk2/gtk2_graphics.cpp \ 
     93    modules/gui/skins/gtk2/gtk2_graphics.h \ 
     94    modules/gui/skins/gtk2/gtk2_run.cpp \ 
     95    modules/gui/skins/gtk2/gtk2_theme.cpp \ 
     96    modules/gui/skins/gtk2/gtk2_theme.h \ 
     97    modules/gui/skins/gtk2/gtk2_window.cpp \ 
     98    modules/gui/skins/gtk2/gtk2_window.h \ 
    8099    $(NULL) 
    81100 
  • modules/gui/skins/controls/slider.cpp

    rce066e7 rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: slider.cpp,v 1.2 2003/03/21 00:17:00 karibu Exp $ 
     5 * $Id: slider.cpp,v 1.3 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    7979    delete[] CursorX; 
    8080    delete[] CursorY; 
     81/* FIXME: kludge */ 
     82#ifdef WIN32     
    8183    DeleteObject( HitRgn ); 
     84#else 
     85  fprintf(stderr, "WARNING: fixme in slider.cpp!!!!!"); 
     86#endif 
    8287} 
    8388//--------------------------------------------------------------------------- 
  • modules/gui/skins/os_api.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: os_api.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: os_api.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    3030#if defined( WIN32 ) 
    3131    #define DIRECTORY_SEPARATOR '\\' 
     32#else 
     33    #define DIRECTORY_SEPARATOR '/' 
    3234#endif 
    3335 
  • modules/gui/skins/os_bitmap.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: os_bitmap.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: os_bitmap.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2828    #include "win32_bitmap.h" 
    2929    #define OSBitmap Win32Bitmap 
     30#else     
     31    #include "gtk2_bitmap.h" 
     32    #define OSBitmap GTK2Bitmap 
    3033#endif 
    3134 
  • modules/gui/skins/os_dialog.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: os_dialog.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: os_dialog.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2929    #define OSOpenFileDialog Win32OpenFileDialog 
    3030    #define OSLogWindow Win32LogWindow 
     31#else     
     32    #include "gtk2_dialog.h" 
     33    #define OSOpenFileDialog GTK2OpenFileDialog 
     34    #define OSLogWindow GTK2LogWindow 
    3135#endif 
    3236 
  • modules/gui/skins/os_event.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: os_event.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: os_event.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2828    #include "win32_event.h" 
    2929    #define OSEvent Win32Event 
     30#else     
     31    #include "gtk2_event.h" 
     32    #define OSEvent GTK2Event 
    3033#endif 
    3134 
  • modules/gui/skins/os_font.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: os_font.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: os_font.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2828    #include "win32_font.h" 
    2929    #define OSFont Win32Font 
     30#else     
     31    #include "gtk2_font.h" 
     32    #define OSFont GTK2Font 
    3033#endif 
  • modules/gui/skins/os_graphics.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: os_graphics.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: os_graphics.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2727#if defined( WIN32 ) 
    2828    #include "win32_graphics.h" 
    29  
    3029    #define SRC_COPY   SRCCOPY 
    3130    #define SRC_AND    SRCAND 
    3231    #define OSGraphics Win32Graphics 
    3332    #define OSRegion   Win32Region 
    34  
     33#else     
     34    #include "gtk2_graphics.h" 
     35    #define SRC_COPY   SRCCOPY 
     36    #define SRC_AND    SRCAND 
     37    #define OSGraphics GTK2Graphics 
     38    #define OSRegion   GTK2Region 
    3539#endif 
    3640 
  • modules/gui/skins/os_theme.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: os_theme.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: os_theme.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2828    #include "win32_theme.h" 
    2929    #define OSTheme Win32Theme 
     30#else     
     31    #include "gtk2_theme.h" 
     32    #define OSTheme GTK2Theme 
    3033#endif 
  • modules/gui/skins/os_window.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: os_window.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: os_window.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2929    #include "win32_window.h" 
    3030    #define OSWindow Win32Window 
     31#else     
     32    #include "gtk2_dragdrop.h" 
     33    #include "gtk2_window.h" 
     34    #define OSWindow GTK2Window 
    3135#endif 
  • modules/gui/skins/parser/wrappers.cpp

    rfff2958 rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: wrappers.cpp,v 1.4 2003/03/19 17:14:50 karibu Exp $ 
     5 * $Id: wrappers.cpp,v 1.5 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    3838#include "banks.h" 
    3939#include "controls.h" 
     40#include "font.h" 
    4041#include "window.h" 
    4142#include "theme.h" 
  • modules/gui/skins/src/dialog.cpp

    r8558137 rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: dialog.cpp,v 1.2 2003/03/20 09:29:07 karibu Exp $ 
     5 * $Id: dialog.cpp,v 1.3 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    8888 
    8989 
     90/* FIXME: kludge */ 
     91#ifdef WIN32 
    9092            // Append all messages to log window 
    9193            switch( Sub->p_msg[i_start].i_type ) 
     
    100102                    ChangeColor( RGB( 128, 128, 128 ) ); 
    101103                    break; 
     104#else 
     105  fprintf(stderr, "WARNING: FIXME in dialog.cpp"); 
     106            // Append all messages to log window 
     107            switch( Sub->p_msg[i_start].i_type ) 
     108            { 
     109                case VLC_MSG_ERR: 
     110 //                   ChangeColor( RGB( 255, 0, 0 ), true ); 
     111                    break; 
     112                case VLC_MSG_WARN: 
     113//                    ChangeColor( RGB( 255, 128, 0 ), true ); 
     114                    break; 
     115                default: 
     116//                    ChangeColor( RGB( 128, 128, 128 ) ); 
     117                    break; 
     118#endif 
    102119            } 
    103120 
  • modules/gui/skins/src/event.h

    r44c1d4c rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: event.h,v 1.4 2003/04/11 22:08:06 videolan Exp $ 
     5 * $Id: event.h,v 1.5 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    4141#define MAX_EVENT_SIZE 30 
    4242#define MAX_PARAM_SIZE 20 
     43 
     44#if !defined _WIN32 
     45#define WM_APP 0x8000 
     46#endif 
    4347 
    4448#define VLC_MESSAGE         (WM_APP) 
  • modules/gui/skins/src/font.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: font.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: font.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    3131#include <string> 
    3232using namespace std; 
     33 
     34/* FIXME :kludge */ 
     35#define DT_TOP               0  //  0x0000 
     36#define DT_LEFT              0  //  0x0000 
     37#define DT_CENTER            1  //  0x0001 
     38#define DT_RIGHT             2  //  0x0002 
    3339 
    3440//--------------------------------------------------------------------------- 
  • modules/gui/skins/src/skin_main.cpp

    r158bb3e rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: skin_main.cpp,v 1.5 2003/04/06 17:57:11 ipkiss Exp $ 
     5 * $Id: skin_main.cpp,v 1.6 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    5454// Exported interface functions. 
    5555//--------------------------------------------------------------------------- 
     56#ifdef WIN32 
    5657extern "C" __declspec( dllexport ) 
    5758    int __VLC_SYMBOL( vlc_entry ) ( module_t *p_module ); 
     59#endif 
    5860 
    5961//--------------------------------------------------------------------------- 
     
    156158        if( ! Loader->Load( DEFAULT_SKIN_FILE ) ) 
    157159#else 
     160#ifdef WIN32 
    158161        string default_dir = (string)p_intf->p_libvlc->psz_vlcpath + 
    159162                             DIRECTORY_SEPARATOR + "skins" + 
    160163                             DIRECTORY_SEPARATOR + "default" + 
    161164                             DIRECTORY_SEPARATOR + "theme.xml"; 
     165#else 
     166/* FIXME: find VLC directory */ 
     167        string default_dir = (string)"." + 
     168                             DIRECTORY_SEPARATOR + "skins" + 
     169                             DIRECTORY_SEPARATOR + "default" + 
     170                             DIRECTORY_SEPARATOR + "theme.xml"; 
     171#endif 
    162172        if( ! Loader->Load( default_dir ) ) 
    163173#endif 
     
    327337    vlc_mutex_unlock( &p_intf->change_lock ); 
    328338 
    329     return( TRUE ); 
     339    return( VLC_TRUE ); 
    330340} 
    331341//--------------------------------------------------------------------------- 
  • modules/gui/skins/src/themeloader.cpp

    r1b92f4a rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: themeloader.cpp,v 1.3 2003/03/19 03:11:14 karibu Exp $ 
     5 * $Id: themeloader.cpp,v 1.4 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2828#include <string> 
    2929#include <fcntl.h> 
     30#if !defined WIN32 
     31#include <unistd.h> 
     32#endif 
    3033 
    3134//--- VLC ------------------------------------------------------------------- 
     
    181184 
    182185    // Save current working directory 
     186#ifdef WIN32     
    183187    char *cwd = new char[MAX_PATH]; 
    184188    getcwd( cwd, MAX_PATH ); 
     189#else 
     190    char *cwd = new char[PATH_MAX]; 
     191    getcwd( cwd, PATH_MAX ); 
     192#endif 
    185193 
    186194    // Directory separator is different in each OS ! 
  • modules/gui/skins/src/vlcproc.cpp

    r44c1d4c rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: vlcproc.cpp,v 1.4 2003/04/11 22:08:06 videolan Exp $ 
     5 * $Id: vlcproc.cpp,v 1.5 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    582582    aout_VolumeGet( p_intf, &volume ); 
    583583 
     584/* FIXME: kludge */ 
     585#ifdef WIN32 
    584586    PostMessage( NULL, CTRL_SET_SLIDER, 
    585587        (unsigned int) 
    586588            p_intf->p_sys->p_theme->EvtBank->Get( "volume_refresh" ), 
    587589        (int)( volume * SLIDER_RANGE / AOUT_VOLUME_MAX ) ); 
     590#else 
     591  fprintf(stderr, "WARNING: FIXME in vlcproc.cpp !!!"); 
     592#endif 
    588593} 
    589594//--------------------------------------------------------------------------- 
     
    595600void VlcProc::AddNetworkUDP( int port ) 
    596601{ 
    597     config_PutInt( p_intf, "network-channel", FALSE ); 
     602    config_PutInt( p_intf, "network-channel", VLC_FALSE ); 
    598603 
    599604    // Build source name 
  • modules/gui/skins/src/window.cpp

    r8558137 rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: window.cpp,v 1.4 2003/03/20 09:29:07 karibu Exp $ 
     5 * $Id: window.cpp,v 1.5 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    279279 
    280280    // Copy buffer in Image 
     281/* FIXME: kludge */ 
     282#ifdef WIN32 
    281283    Image->CopyFrom( x, y, w, h, Buffer, 0, 0, SRC_COPY ); 
     284#else 
     285  fprintf(stderr, "WARNING: FIXME in window.cpp !!!!"); 
     286#endif 
    282287 
    283288    // Free memory 
  • modules/gui/skins/win32/win32_api.cpp

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_api.cpp,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: win32_api.cpp,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728//--- WIN32 ----------------------------------------------------------------- 
     
    160161//--------------------------------------------------------------------------- 
    161162 
     163#endif 
  • modules/gui/skins/win32/win32_bitmap.cpp

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_bitmap.cpp,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: win32_bitmap.cpp,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728//--- WIN32 ----------------------------------------------------------------- 
     
    174175//--------------------------------------------------------------------------- 
    175176 
     177#endif 
  • modules/gui/skins/win32/win32_bitmap.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_bitmap.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: win32_bitmap.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728#ifndef VLC_WIN32_BITMAP 
     
    6869 
    6970#endif 
     71 
     72#endif 
  • modules/gui/skins/win32/win32_dialog.cpp

    r8558137 rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_dialog.cpp,v 1.2 2003/03/20 09:29:07 karibu Exp $ 
     5 * $Id: win32_dialog.cpp,v 1.3 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728//--- VLC ------------------------------------------------------------------- 
     
    360361//--------------------------------------------------------------------------- 
    361362 
     363#endif 
  • modules/gui/skins/win32/win32_dialog.h

    r8558137 rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_dialog.h,v 1.2 2003/03/20 09:29:07 karibu Exp $ 
     5 * $Id: win32_dialog.h,v 1.3 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728#ifndef VLC_SKIN_WIN32_DIALOG 
     
    8283#endif 
    8384 
     85#endif 
  • modules/gui/skins/win32/win32_dragdrop.cpp

    r9674a22 rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_dragdrop.cpp,v 1.2 2003/03/18 04:56:58 ipkiss Exp $ 
     5 * $Id: win32_dragdrop.cpp,v 1.3 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728//--- WIN32 ----------------------------------------------------------------- 
     
    165166} 
    166167 
     168#endif 
  • modules/gui/skins/win32/win32_dragdrop.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_dragdrop.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: win32_dragdrop.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728#ifndef VLC_SKIN_WIN32_DRAGDROP 
     
    6162//--------------------------------------------------------------------------- 
    6263#endif 
     64 
     65#endif 
  • modules/gui/skins/win32/win32_event.cpp

    rfff2958 rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_event.cpp,v 1.2 2003/03/19 17:14:50 karibu Exp $ 
     5 * $Id: win32_event.cpp,v 1.3 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728//--- WIN32 ----------------------------------------------------------------- 
     
    120121//--------------------------------------------------------------------------- 
    121122 
     123#endif 
  • modules/gui/skins/win32/win32_event.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_event.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: win32_event.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728#ifndef VLC_SKIN_WIN32_EVENT 
     
    6667 
    6768#endif 
     69 
     70#endif 
  • modules/gui/skins/win32/win32_font.cpp

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_font.cpp,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: win32_font.cpp,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728//--- WIN32 ----------------------------------------------------------------- 
     
    148149 
    149150 
     151#endif 
  • modules/gui/skins/win32/win32_font.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_font.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: win32_font.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728#ifndef VLC_SKIN_WIN32_FONT 
     
    7071 
    7172#endif 
     73 
     74#endif 
  • modules/gui/skins/win32/win32_graphics.cpp

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_graphics.cpp,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: win32_graphics.cpp,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728//--- WIN32 ----------------------------------------------------------------- 
     
    147148} 
    148149//--------------------------------------------------------------------------- 
     150 
     151#endif 
  • modules/gui/skins/win32/win32_graphics.h

    ra64501f rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_graphics.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ 
     5 * $Id: win32_graphics.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525 
     26#ifdef WIN32 
    2627 
    2728#ifndef VLC_SKIN_WIN32_GRAPHICS 
     
    8283 
    8384#endif 
     85 
     86#endif 
  • modules/gui/skins/win32/win32_run.cpp

    r8558137 rf3bcd92  
    33 ***************************************************************************** 
    44 * Copyright (C) 2003 VideoLAN 
    5  * $Id: win32_run.cpp,v 1.3 2003/03/20 09:29:07 karibu Exp $ 
     5 * $Id: win32_run.cpp,v 1.4 2003/04/12 21:43:27 asmax Exp $ 
    66 * 
    77 * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> 
     
    2424 *****************************************************************************/ 
    2525