Linkshare rotating banner
Showing posts with label development. Show all posts
Showing posts with label development. Show all posts

Wednesday, September 19, 2012

Setting up MinGW64 with Cygwin

This is just another version of my previous post on Cygwin with focus on MinGW64. I hope this guide will more or less make it easy to install MinGW on Windows. After following this guide, you'll be ready to develop genuine Windows applications. Just download and run setup.exe from the Cygwin website and choose the following packages.




  • bison
  • gettext-devel
  • libtool
  • make
  • mingw64-i686-gcc-g++
  • mingw64-x86_64-gcc-g++
  • patch
  • pkg-config


To select a package for installation, type the name of the package in the Search box, expand the category by clicking the + sign, and click on the package until its version number shows up.



cygwin_setup_mingw64

When you see the Resolving Dependencies window, just accept and click Next.



cygwin_setup_dependencies

Mounting /mingw



If you're building 32-bit applications, add the following line to /etc/fstab so that /mingw is properly set up.


/usr/i686-w64-mingw32/sys-root/mingw /mingw none bind


If you're building 64-bit applications, add the following line to /etc/fstab instead.


/usr/x86_64-w64-mingw32/sys-root/mingw /mingw none bind


Creating Symbolic Links



Start the Cygwin terminal and create symbolic links to gcc and g++ in this manner.



ln -s /usr/bin/i686-w64-mingw32-gcc.exe /usr/i686-w64-mingw32/bin/gcc.exe
ln -s /usr/bin/i686-w64-mingw32-g++.exe /usr/i686-w64-mingw32/bin/g++.exe
ln -s /usr/bin/x86_64-w64-mingw32-gcc.exe /usr/x86_64-w64-mingw32/bin/gcc.exe
ln -s /usr/bin/x86_64-w64-mingw32-g++.exe /usr/x86_64-w64-mingw32/bin/g++.exe


Setting up environment variables



If you're building 32-bit applications, type the following commands or put them in ~/.profile:



export CC=/usr/bin/i686-w64-mingw32-gcc.exe
export CFLAGS="-mtune=pentium2 -mthreads -mms-bitfields -O2"
export CXXFLAGS="-mtune=pentium2 -mthreads -mms-bitfields -O2"
export CPPFLAGS="-I/mingw/include"
export LDFLAGS="-L/mingw/lib -Wl,--enable-auto-image-base -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc"
export PATH=/mingw/bin:/usr/i686-w64-mingw32/bin:/usr/local/bin:/usr/bin
export PKG_CONFIG_PATH=/mingw/lib/pkgconfig


If you're building 64-bit applications, type the following or put in ~/.profile:



export CC=/usr/bin/x86_64-w64-mingw32-gcc.exe
export CFLAGS="-mtune=core2 -mthreads -mms-bitfields -O2"
export CXXFLAGS="-mtune=core2 -mthreads -mms-bitfields -O2"
export CPPFLAGS="-I/mingw/include"
export LDFLAGS="-L/mingw/lib -Wl,--enable-auto-image-base -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc"
export PATH=/mingw/bin:/usr/x86_64-w64-mingw32/bin:/usr/local/bin:/usr/bin
export PKG_CONFIG_PATH=/mingw/lib/pkgconfig


For more information on possible -mtune values, look here.



Thursday, September 6, 2012

Building cdrtools under Cygwin


cdrtools is a powerful open-source CD/DVD/BD burning tool. It is used as backend software for free DVD-burning applications, such as Infrarecorder and cdrtfe. To build cdrtools for Windows, install Cygwin as shown in this post. Additionally, I installed the following Cygwin packages.




  • bison
  • gcc4-core
  • gcc4-g++
  • gettext-devel
  • libiconv
  • libtool
  • make
  • patch
  • pkg-config


I set up some environment variables before I started.


export CC=/usr/bin/gcc.exe
export CC_OPT="-O2"
export CFLAGS="-march=pentium2 -mtune=i586 -mthreads -mms-bitfields"
export LDFLAGS="-L/usr/lib -Wl,--enable-auto-image-base -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc"


Then, I built smake.


cd smake-1.2
make
make INS_BASE=/usr install


Then, I built cdrtools.


smake
smake INS_BASE=/usr install


Using cdrtools


I tested my cdrtools build. To create an ISO file from a folder, I ran mkisofs:


mkisofs -J -R -hide-rr-moved ~/Downloads > dl.iso

To burn an ISO:


cdrecord -scanbus
cdrecord dev=0,0,0 speed=8 driveropts=burnfree dl.iso

To make a copy of a data CD:


readcd dev=0,0,0 f=dl2.iso speed=8 retries=16 -nocorr -noerror

To scan a music CD, I ran cdda2wav:


cdda2wav -scanbus
cdda2wav dev=0,0,0 cddb=1 -cddbp-server=freedb.freedb.org -cddbp-port=8880 -J -N

To rip the second track of the music CD:


cdda2wav dev=0,0,0 cddb=1 track=2 ~/Music/track2.wav



Download my cdrtools build for Windows


Here you can get my cdrtools build.




Free cdrtools Graphical Interfaces for Windows


If you don't want to deal with the command line, there are, of course, user-friendly GUI frontends for cdrtools.




Related Links



Wednesday, September 5, 2012

Compiling CMake with MinGW

CMake is a portable build system. CMake can be used to replace the traditional GNU build process, as in:



./configure

make

make install


Compiling CMake is fairly simple. After you install MinGW (as shown in this post), download and unpack the CMake source tarball. Run the following commands in order.



tar xzvf cmake-2.8.9.tar.gz
cd cmake-2.8.9
./bootstrap --prefix=/mingw
make
make install

Sunday, September 2, 2012

Setting Up Cygwin For C/C++ Software Development on Windows

Cygwin provides a Unix-like environment for Windows users. Cygwin is useful for people who want to learn Unix or popular Linux without having to install Unix or Linux. Cygwin can also be used to port Linux applications to Windows or develop genuine Windows applications. To install Cygwin, download setup.exe from the Cygwin website and run it.



Cygwin Packages for Software Development


In addition to the default packages, select the following packages for common development environment:


  • bison
  • gettext-devel
  • libtool
  • make
  • patch
  • pkg-config


To select a package for installation, type the name of the package in the Search box, expand the categories by clicking a plus, and clicking on the package until its version number shows up.



cygwin_setup_mingw64

If you want to develop software applications that depend on cygwin1.dll (which emulates Unix on Windows), install one of the following packages. This is when you want to port Linux applications to Windows with little modification.


  • gcc-g++

    outdated version 3.4.4
  • gcc4-g++

    GCC 4.x that links applications with cygwin1.dll


If you want to develop pure Windows applications, install one of the following packages.


  • mingw-gcc-g++

    The original MinGW compiler from mingw.org can't build 64-bit applications.
  • mingw64-i686-gcc-g++

    New MinGW compiler from mingw-w64.sourceforge.net.
  • mingw64-x86_64-gcc-g++

    Install these to develop 64-bit Windows applications.


When you see the Resolving Dependencies window, just accept and click Next.


cygwin_setup_dependencies

Setting HOME Variable


Setting the environment variable %HOME% is useful for various reasons. First of all, it allows regular users to compile freely in their user folder without requiring access to C:\Cygwin. Secondly, it allows users to save user-specific configuration in their user folder. For example, user configuration files such as .profile, .gtkrc-2.0, .fonts.conf and .pango-aliases can be saved in the folder specified by %HOME%.


Set HOME environment variable for MinGW and Cygwin

Setting Up mingw* compiler for Cygwin


The file C:\Cygwin\etc\fstab is used to set up mount points in Cygwin. If you installed mingw64 packages, open the file C:\Cygwin\etc\fstab in a text editor and append the following line.


/usr/i686-w64-mingw32/sys-root/mingw /mingw none bind

Start the Cygwin terminal and type the following commands to set up Cygwin for Windows compilation.


ln -s /usr/bin/i686-w64-mingw32-g++.exe /usr/i686-w64-mingw32/bin/g++.exe
ln -s /usr/bin/i686-w64-mingw32-gcc.exe /usr/i686-w64-mingw32/bin/gcc.exe

Also, set up some environment variables.


export CFLAGS="-march=pentium2 -mtune=i586 -mthreads -mms-bitfields -O2"
export CXXFLAGS="-march=pentium2 -mtune=i586 -mthreads -mms-bitfields -O2"
export CPPFLAGS="-I/mingw/include"
export LDFLAGS="-L/mingw/lib -Wl,--enable-auto-image-base -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc"
export PATH=/mingw/bin:/usr/i686-w64-mingw32/bin:/usr/local/bin:/usr/bin
export PKG_CONFIG_PATH=/mingw/lib/pkgconfig


Setting Up gcc* Compiler for Cygwin


If you installed the gcc4 compiler (as opposed to mingw*), set up some environment variables to customize your build environment. I usually type the following commands:


CC="/usr/bin/gcc.exe"
CFLAGS="-march=pentium2 -mtune=i586 -mthreads -mms-bitfields -O2"
CPPFLAGS="-I/usr/include"
CXXFLAGS="-march=pentium2 -mtune=i586 -mthreads -mms-bitfields -O2"
LDFLAGS="-L/usr/lib -Wl,--enable-auto-image-base -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc"
export CC CFLAGS CPPFLAGS CXXFLAGS LDFLAGS

Sunday, March 14, 2010

MinGW와 MSYS 설치하기

윈도우처럼 오픈소스가 아닌 운영체제를 사용하면 컴파일할 필요를 별로 느끼지 않는다. 하지만, 리눅스를 쓰다 보면 커널 및 여러 쓸모있는 프로그램을 컴파일하게 되고 자연히 컴파일하는 버릇을 가지게 된다. 리눅스에서 쓰던 유용한 프로그램들을 윈도우에서도 쓸 수 있으면 얼마나 좋을까. 다행히 윈도우에서도 리눅스 프로그램을 포팅할 수 있도록 도와 주는 GCC 컴파일러를 제공하는 MinGW 프로젝트가 있다. 물론, 윈도우 전용 프로그램도 맘껏 만들 수 있는, 아주 쓸만한 대체적 개발 환경이다. 그럼, 이제 MinGW를 윈도우에 설치해 보자.



참고: Windows Vista 또는 Windows 7 환경에서는 파일 시스템에 대한 사용자 권한 제한 때문에 MinGW 사용시 컴파일 에러 같은 문제가 일어날 수 있다. 이러한 경우 다음과 같이 여러 해결 방법이 있다.

  • 자신의 사용자 폴더(C:\Users\Name) 또는 데스크탑(C:\Users\Public\Desktop)에 MinGW와 MSYS를 설치한다.
  • FAT 파티션이나 USB 메모리에 MinGW를 설치한다.
  • C:\MinGW에 설치했을 경우 MSYS를 실행할 때 MSYS (rxvt) 아이콘을 오른쪽 마우스 버튼으로 클릭하여 관리자 권한으로 실행한다.
  • USB 메모리에 PortableApps 플랫폼을 설치한 다음 MinGW PortableApp 받아서 설치하면 MinGW 설치가 쉽게 된다. 이렇게 하면 번거롭게 아래 설명을 따르지 않아도 된다.
  • Safe mode로 Windows를 시작한다.



  1. MinGW 설치에는 다음 3 가지 설치 프로그램이 필요하다. 모두 받아서 차례대로 설치하자.




  2. 먼저 MinGW 자동 설치자(MinGW-5.1.6.exe)를 실행한다. 그러면, Download and install 또는 Download only 둘 중 선택하라고 한다. Download and install 즉, 다운로드 후 설치를 선택한다.


    MinGW installer asks download only?

    다음은 MinGW 릴리스를 선택하는 질문인데 Current를 선택한다.


    MinGW installer asks you to choose package

    다음은 MinGW 설치 요소를 선택한다. MinGW base tools, g++ compilerg77 compiler를 선택하기를 권장한다. 나중에 MSYS를 설치하기 때문에 아직은 MinGW make를 선택하지 않는다.


    Select the MinGW components to install

    다음은 설치 폴더를 결정한다. Windows Vista 및 Windows 7 사용자는 기본값인 C:\MinGW 대신 C:\Users\Public\Desktop\MinGW 폴더에 설치하기를 권한다. MinGW는 공백이 포함된 경로와 문제가 있으므로, "Program Files" 또는 "My Documents" 같은 폴더에 설치하지 않는 게 좋다. MinGW 설치 프로그램이 MinGW 요소를 스스로 받아서 설치한다.


    MinGW installer downloading components

  3. MinGW 설치가 끝나면, MSYS-1.0.11.exe를 실행해 MSYS를 설치한다.


    MinGW Destination Directory

    MinGW가 설치된 경로를 묻는 질문이 나오면, 실제로 MinGW가 설치된 경로(기본값 C:/MinGW 또는 C:/Users/Public/Desktop/MinGW)를 입력한다.


    MSYS asks MinGW path

    MSYS가 성공적으로 설치되면, fstab 파일(C:/MinGW/1.0/etc/fstab 혹은 C:/Users/Public/Desktop/MinGW/1.0/etc/fstab)을 텍스트 에디터(notepad.exe)로 열어 내용을 확인한다. 다음과 같이 /mingw 에 대한 실제 디렉토리 매핑이 올바로 되어 있어야 한다.


    C:/MinGW /mingw

    시작 프로그램 메뉴에서 MSYS (rxvt) 아이콘을 더블클릭하여 MSYS를 테스트해 본다. 익숙한 리눅스 명령어를 입력할 수 있는 터미널 창이 나타난다. 다음은 GCC 컴파일러의 버전을 알아보는 명령어인데 현재 3.4.5란 결과가 나올 것이다.


    $ gcc --version
    gcc.exe (GCC) 3.4.5 (mingw-vista special r3)
    Copyright (C) 2004 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.


  4. 다음은 MinGW 개발 도구 모음(msysDTK-1.0.1.exe)을 설치한다. MSYS가 설치된 폴더(C:\MinGW\1.0 혹은 C:\Users\Public\Desktop\MinGW\1.0)에 설치하도록 한다. cvs, perl, ssh 같이 개발에 유용한 도구가 설치될 것이다.


    perl --version
    ssh --version


  5. 그 밖에 MinGW 프로젝트에서 여러 패키지를 받아서 추가적으로 설치한 수 있다. 예를 들어 mingw-utils 받아서 설치할 수 있다.

    cd /mingw
    tar xzvf mingw-utils-0.3.tar.gz

    다음 몇 가지 프로그램도 유용하다.




  6. MinGW 설치 폴더에 쓰기 권한이 없을 경우, 혹은 사용자 이름이 한글일 경우엔 환경변수 HOME을 정해 주는 것이 좋다. 자신의 홈 디렉토리를 따로 설정해 주는 것이다.

    Set your own HOME variable

  7. 마지막으로, 홈 폴더에 .profile 이름의 텍스트 파일을 만들어 컴파일 환경을 설정할 수 있다. 다음은 예제 .profile 내용이다.

    CC='/mingw/bin/gcc.exe '
    CFLAGS='-march=pentium2 -mtune=i586 -mthreads -O2 -g -fomit-frame-pointer -mms-bitfields -pipe '
    CPPFLAGS='-I/mingw/include -DWIN32 -DMINGW32 '
    CXXFLAGS="${CFLAGS}"
    LDFLAGS='-L/mingw/lib -Wl,--enable-auto-image-base -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc '
    PKG_CONFIG_PATH=/mingw/lib/pkgconfig
    export CC CFLAGS CPPFLAGS CXXFLAGS LDFLAGS PKG_CONFIG_PATH

    CFLAGS와 LDFLAGS를 각자의 취향에 맞게 고쳐서 사용하면 좋다. -march= 옵션으로 자신의 CPU에 최적화한 코드를 만들 수 있는데, i586, pentium-mmx, i686, pentium2, pentium3, pentium-m, pentium4, prescott, k6-2, athlon, athlon-4 따위에서 -march= 값을 고를 수 있다(자세한 정보).


    CFLAGS='-march=pentium3 -mthreads -O2 -fomit-frame-pointer -mms-bitfields -pipe '
    export CFLAGS

Friday, December 18, 2009

Linux: To build WDM

WDM is a display login manager for Linux. I am building WDM as replacement for xdm and slim. Before compilation, I installed the following packages in addition to the compiler toolchain:


  • libwraster3-dev
  • libwings-dev
  • libpam0g-dev
  • libxinerama-dev
  • gettext

I configured wdm like this:


./configure --x-includes=/usr/local/include --x-libraries=/usr/local/lib --sysconfdir=/etc/X11 --localstatedir=/var --with-nlsdir=/usr/share/locale --with-wdmdir=/etc/X11/wdm --with-gfxdir=/usr/share/pixmaps/wdm --enable-aafont --with-wmlist=icewm:openbox:pekwm:gnome-session

Then I built WDM:


make
make install

The following files are installed.


/etc/X11/wdm/Xclients
/etc/X11/wdm/Xservers
/etc/X11/wdm/Xservers.ws
/etc/X11/wdm/Xsession
/etc/X11/wdm/Xsetup_0
/etc/X11/wdm/wdm-config
/etc/X11/wdm/wdmReconfig
/usr/local/bin/wdm
/usr/local/bin/wdmLogin
/usr/local/man/man1/wdm.1
/usr/share/locale/de/LC_MESSAGES/wdm.mo
/usr/share/locale/cs/LC_MESSAGES/wdm.mo
/usr/share/locale/cy/LC_MESSAGES/wdm.mo
/usr/share/locale/en/LC_MESSAGES/wdm.mo
/usr/share/locale/es/LC_MESSAGES/wdm.mo
/usr/share/locale/ja/LC_MESSAGES/wdm.mo
/usr/share/locale/ru/LC_MESSAGES/wdm.mo
/usr/share/locale/fr_FR/LC_MESSAGES/wdm.mo
/var/run/wdm

I created a script as /etc/init.d/wdm:


#!/bin/sh

set -e

test -x /usr/local/bin/wdm || exit 0

case "$1" in
start)
echo "Starting wdm..."
start-stop-daemon --start --quiet --pidfile /var/run/wdm.pid --name wdm --startas /usr/local/bin/wdm
;;

restart)
/etc/init.d/wdm stop
/etc/init.d/wdm start
;;

stop)
echo "Stopping wdm..."
if ! [ -f /var/run/wdm.pid ]; then
echo "/var/run/wdm.pid not found"
else
start-stop-daemon --stop --quiet --pidfile /var/run/wdm.pid --name wdm --retry TERM/5/TERM/5
fi
;;
esac

exit 0

Upon reboot, wdm started but wouldn't respond to the Return key after I typed my login name. I wasn't able to fix this problem yet.

Monday, August 17, 2009

MinGW: Building wxMSW 2.8.11

WxWidgets library provides cross-platform widget classes that work well on top of most other widgets available. wxWidgets comes in many flavors: wxMSW, wxGTK, wxMac, etc. Among them, I'm most interested in wxMSW and wxGTK because they are the ones that work on my computers. Today I am venturing into compiling wxMSW with MinGW.



Compiling wxMSW dependencies


wxWidgets makes use of some libraries if they are available on the system. Namely, they are zlib, png, jpeg, tiff and expat. To compile those libraries for yourself, launch MSYS (rxvt) and type the following commands. To build zlib:



unzip zlib125.zip
cd zlib-1.2.5/
make -f win32/Makefile.gcc


Then, manually copy the files as follows:



cp -iv zlib1.dll /mingw/bin
cp -iv zconf.h zlib.h /mingw/include
cp -iv libz.a /mingw/lib
cp -iv libzdll.a /mingw/lib/libz.dll.a


To compile libPNG:


tar xzvf libpng-1.4.1.tar.gz 
cd libpng-1.4.1
./configure --prefix=/mingw
make
make install


To compile libJPEG:


tar xzvf jpegsrc.v8a.tar.gz
cd jpeg-8a/
./configure --prefix=/mingw
make
make install


Compile libTIFF like this:



./configure --prefix=/mingw
make
cd libtiff; make install


eXpat is an XML parser library, but compiling it is optional. To build it:



tar xzvf expat-2.0.1.tar.gz 
cd expat-2.0.1/
./configure --prefix=/mingw
make
make install


If you want your wxMSW applications to be able to handle Unicode in Windows 9x/ME, download libunicows-1.1.1-mingw32.zip and extract libunicows.a to /mingw/lib. Also, don't forget to include unicows.dll in your distribution.



Optionally, download DirectX 7 headers and extract them into /mingw/include.



wxMSW Shared Library


I downloaded wxMSW 2.8.10 source (wxMSW-2.8.10.zip) from http://www.wxwidgets.org/downloads/ and unzipped it in my home folder. I changed directory to the build subfolder and configured wxMSW like this:


cd $HOME

unzip wxMSW-2.8.10.zip

cd wxMSW-2.8.10/build

../configure --prefix=/mingw --with-msw --enable-shared --enable-optimise --enable-intl --enable-mslu --enable-unicode --enable-official_build --without-subdirs --with-regex

Then, I called make:


make

Compilation succeeded. Then, I called make install:


make install

This installed the following files on the system:


bin/wx-config
include/wx-2.8/wx/aboutdlg.h
include/wx-2.8/wx/accel.h
include/wx-2.8/wx/access.h
include/wx-2.8/wx/afterstd.h
include/wx-2.8/wx/anidecod.h
include/wx-2.8/wx/animate.h
include/wx-2.8/wx/animdecod.h
include/wx-2.8/wx/app.h
include/wx-2.8/wx/apptrait.h
include/wx-2.8/wx/archive.h
include/wx-2.8/wx/arrimpl.cpp
include/wx-2.8/wx/arrstr.h
include/wx-2.8/wx/artprov.h
include/wx-2.8/wx/aui/aui.h
include/wx-2.8/wx/aui/auibar.h
include/wx-2.8/wx/aui/auibook.h
include/wx-2.8/wx/aui/dockart.h
include/wx-2.8/wx/aui/floatpane.h
include/wx-2.8/wx/aui/framemanager.h
include/wx-2.8/wx/aui/tabmdi.h
include/wx-2.8/wx/beforestd.h
include/wx-2.8/wx/bitmap.h
include/wx-2.8/wx/bmpbuttn.h
include/wx-2.8/wx/bmpcbox.h
include/wx-2.8/wx/bookctrl.h
include/wx-2.8/wx/brush.h
include/wx-2.8/wx/buffer.h
include/wx-2.8/wx/build.h
include/wx-2.8/wx/busyinfo.h
include/wx-2.8/wx/button.h
include/wx-2.8/wx/calctrl.h
include/wx-2.8/wx/caret.h
include/wx-2.8/wx/checkbox.h
include/wx-2.8/wx/checklst.h
include/wx-2.8/wx/chkconf.h
include/wx-2.8/wx/choicdlg.h
include/wx-2.8/wx/choice.h
include/wx-2.8/wx/choicebk.h
include/wx-2.8/wx/clipbrd.h
include/wx-2.8/wx/clntdata.h
include/wx-2.8/wx/clrpicker.h
include/wx-2.8/wx/cmdline.h
include/wx-2.8/wx/cmdproc.h
include/wx-2.8/wx/cmndata.h
include/wx-2.8/wx/collpane.h
include/wx-2.8/wx/colordlg.h
include/wx-2.8/wx/colour.h
include/wx-2.8/wx/combo.h
include/wx-2.8/wx/combobox.h
include/wx-2.8/wx/confbase.h
include/wx-2.8/wx/config.h
include/wx-2.8/wx/containr.h
include/wx-2.8/wx/control.h
include/wx-2.8/wx/convauto.h
include/wx-2.8/wx/cpp.h
include/wx-2.8/wx/cshelp.h
include/wx-2.8/wx/ctrlsub.h
include/wx-2.8/wx/cursor.h
include/wx-2.8/wx/dataobj.h
include/wx-2.8/wx/dataview.h
include/wx-2.8/wx/datectrl.h
include/wx-2.8/wx/dateevt.h
include/wx-2.8/wx/datetime.h
include/wx-2.8/wx/datstrm.h
include/wx-2.8/wx/db.h
include/wx-2.8/wx/dbgrid.h
include/wx-2.8/wx/dbkeyg.h
include/wx-2.8/wx/dbtable.h
include/wx-2.8/wx/dc.h
include/wx-2.8/wx/dcbuffer.h
include/wx-2.8/wx/dcclient.h
include/wx-2.8/wx/dcgraph.h
include/wx-2.8/wx/dcmemory.h
include/wx-2.8/wx/dcmirror.h
include/wx-2.8/wx/dcprint.h
include/wx-2.8/wx/dcps.h
include/wx-2.8/wx/dcscreen.h
include/wx-2.8/wx/dde.h
include/wx-2.8/wx/debug.h
include/wx-2.8/wx/debugrpt.h
include/wx-2.8/wx/defs.h
include/wx-2.8/wx/dialog.h
include/wx-2.8/wx/dialup.h
include/wx-2.8/wx/dir.h
include/wx-2.8/wx/dirctrl.h
include/wx-2.8/wx/dirdlg.h
include/wx-2.8/wx/display.h
include/wx-2.8/wx/display_impl.h
include/wx-2.8/wx/dlimpexp.h
include/wx-2.8/wx/dnd.h
include/wx-2.8/wx/docmdi.h
include/wx-2.8/wx/docview.h
include/wx-2.8/wx/dragimag.h
include/wx-2.8/wx/dynarray.h
include/wx-2.8/wx/dynlib.h
include/wx-2.8/wx/dynload.h
include/wx-2.8/wx/effects.h
include/wx-2.8/wx/encconv.h
include/wx-2.8/wx/encinfo.h
include/wx-2.8/wx/event.h
include/wx-2.8/wx/evtloop.h
include/wx-2.8/wx/except.h
include/wx-2.8/wx/fdrepdlg.h
include/wx-2.8/wx/features.h
include/wx-2.8/wx/ffile.h
include/wx-2.8/wx/file.h
include/wx-2.8/wx/fileconf.h
include/wx-2.8/wx/filedlg.h
include/wx-2.8/wx/filefn.h
include/wx-2.8/wx/filename.h
include/wx-2.8/wx/filepicker.h
include/wx-2.8/wx/filesys.h
include/wx-2.8/wx/fmappriv.h
include/wx-2.8/wx/font.h
include/wx-2.8/wx/fontdlg.h
include/wx-2.8/wx/fontenc.h
include/wx-2.8/wx/fontenum.h
include/wx-2.8/wx/fontmap.h
include/wx-2.8/wx/fontpicker.h
include/wx-2.8/wx/fontutil.h
include/wx-2.8/wx/frame.h
include/wx-2.8/wx/fs_arc.h
include/wx-2.8/wx/fs_filter.h
include/wx-2.8/wx/fs_inet.h
include/wx-2.8/wx/fs_mem.h
include/wx-2.8/wx/fs_zip.h
include/wx-2.8/wx/gauge.h
include/wx-2.8/wx/gbsizer.h
include/wx-2.8/wx/gdicmn.h
include/wx-2.8/wx/gdiobj.h
include/wx-2.8/wx/generic/aboutdlgg.h
include/wx-2.8/wx/generic/accel.h
include/wx-2.8/wx/generic/animate.h
include/wx-2.8/wx/generic/bmpcbox.h
include/wx-2.8/wx/generic/busyinfo.h
include/wx-2.8/wx/generic/buttonbar.h
include/wx-2.8/wx/generic/calctrl.h
include/wx-2.8/wx/generic/choicdgg.h
include/wx-2.8/wx/generic/clrpickerg.h
include/wx-2.8/wx/generic/collpaneg.h
include/wx-2.8/wx/generic/colrdlgg.h
include/wx-2.8/wx/generic/combo.h
include/wx-2.8/wx/generic/dataview.h
include/wx-2.8/wx/generic/datectrl.h
include/wx-2.8/wx/generic/dcpsg.h
include/wx-2.8/wx/generic/dirctrlg.h
include/wx-2.8/wx/generic/dragimgg.h
include/wx-2.8/wx/generic/filedlgg.h
include/wx-2.8/wx/generic/filepickerg.h
include/wx-2.8/wx/generic/fontdlgg.h
include/wx-2.8/wx/generic/fontpickerg.h
include/wx-2.8/wx/generic/grid.h
include/wx-2.8/wx/generic/gridctrl.h
include/wx-2.8/wx/generic/gridsel.h
include/wx-2.8/wx/generic/helpext.h
include/wx-2.8/wx/generic/laywin.h
include/wx-2.8/wx/generic/logg.h
include/wx-2.8/wx/generic/msgdlgg.h
include/wx-2.8/wx/generic/notebook.h
include/wx-2.8/wx/generic/numdlgg.h
include/wx-2.8/wx/generic/panelg.h
include/wx-2.8/wx/generic/printps.h
include/wx-2.8/wx/generic/prntdlgg.h
include/wx-2.8/wx/generic/progdlgg.h
include/wx-2.8/wx/generic/propdlg.h
include/wx-2.8/wx/generic/sashwin.h
include/wx-2.8/wx/generic/scrolwin.h
include/wx-2.8/wx/generic/spinctlg.h
include/wx-2.8/wx/generic/splash.h
include/wx-2.8/wx/generic/splitter.h
include/wx-2.8/wx/generic/srchctlg.h
include/wx-2.8/wx/generic/textdlgg.h
include/wx-2.8/wx/generic/timer.h
include/wx-2.8/wx/generic/treectlg.h
include/wx-2.8/wx/generic/wizard.h
include/wx-2.8/wx/geometry.h
include/wx-2.8/wx/gifdecod.h
include/wx-2.8/wx/glcanvas.h
include/wx-2.8/wx/graphics.h
include/wx-2.8/wx/grid.h
include/wx-2.8/wx/gsocket.h
include/wx-2.8/wx/hash.h
include/wx-2.8/wx/hashmap.h
include/wx-2.8/wx/hashset.h
include/wx-2.8/wx/help.h
include/wx-2.8/wx/helpbase.h
include/wx-2.8/wx/helphtml.h
include/wx-2.8/wx/helpwin.h
include/wx-2.8/wx/html/forcelnk.h
include/wx-2.8/wx/html/helpctrl.h
include/wx-2.8/wx/html/helpdata.h
include/wx-2.8/wx/html/helpdlg.h
include/wx-2.8/wx/html/helpfrm.h
include/wx-2.8/wx/html/helpwnd.h
include/wx-2.8/wx/html/htmlcell.h
include/wx-2.8/wx/html/htmldefs.h
include/wx-2.8/wx/html/htmlfilt.h
include/wx-2.8/wx/html/htmlpars.h
include/wx-2.8/wx/html/htmlproc.h
include/wx-2.8/wx/html/htmltag.h
include/wx-2.8/wx/html/htmlwin.h
include/wx-2.8/wx/html/htmprint.h
include/wx-2.8/wx/html/m_templ.h
include/wx-2.8/wx/html/winpars.h
include/wx-2.8/wx/htmllbox.h
include/wx-2.8/wx/hyperlink.h
include/wx-2.8/wx/icon.h
include/wx-2.8/wx/iconbndl.h
include/wx-2.8/wx/iconloc.h
include/wx-2.8/wx/imagbmp.h
include/wx-2.8/wx/image.h
include/wx-2.8/wx/imaggif.h
include/wx-2.8/wx/imagiff.h
include/wx-2.8/wx/imagjpeg.h
include/wx-2.8/wx/imaglist.h
include/wx-2.8/wx/imagpcx.h
include/wx-2.8/wx/imagpng.h
include/wx-2.8/wx/imagpnm.h
include/wx-2.8/wx/imagtga.h
include/wx-2.8/wx/imagtiff.h
include/wx-2.8/wx/imagxpm.h
include/wx-2.8/wx/init.h
include/wx-2.8/wx/intl.h
include/wx-2.8/wx/iosfwrap.h
include/wx-2.8/wx/ioswrap.h
include/wx-2.8/wx/ipc.h
include/wx-2.8/wx/ipcbase.h
include/wx-2.8/wx/isql.h
include/wx-2.8/wx/isqlext.h
include/wx-2.8/wx/joystick.h
include/wx-2.8/wx/layout.h
include/wx-2.8/wx/laywin.h
include/wx-2.8/wx/link.h
include/wx-2.8/wx/list.h
include/wx-2.8/wx/listbase.h
include/wx-2.8/wx/listbook.h
include/wx-2.8/wx/listbox.h
include/wx-2.8/wx/listctrl.h
include/wx-2.8/wx/listimpl.cpp
include/wx-2.8/wx/log.h
include/wx-2.8/wx/longlong.h
include/wx-2.8/wx/math.h
include/wx-2.8/wx/matrix.h
include/wx-2.8/wx/mdi.h
include/wx-2.8/wx/mediactrl.h
include/wx-2.8/wx/memconf.h
include/wx-2.8/wx/memory.h
include/wx-2.8/wx/memtext.h
include/wx-2.8/wx/menu.h
include/wx-2.8/wx/menuitem.h
include/wx-2.8/wx/metafile.h
include/wx-2.8/wx/mimetype.h
include/wx-2.8/wx/minifram.h
include/wx-2.8/wx/module.h
include/wx-2.8/wx/msgdlg.h
include/wx-2.8/wx/msgout.h
include/wx-2.8/wx/mstream.h
include/wx-2.8/wx/msw/accel.h
include/wx-2.8/wx/msw/amd64.manifest
include/wx-2.8/wx/msw/app.h
include/wx-2.8/wx/msw/apptbase.h
include/wx-2.8/wx/msw/apptrait.h
include/wx-2.8/wx/msw/bitmap.h
include/wx-2.8/wx/msw/blank.cur
include/wx-2.8/wx/msw/bmpbuttn.h
include/wx-2.8/wx/msw/brush.h
include/wx-2.8/wx/msw/bullseye.cur
include/wx-2.8/wx/msw/button.h
include/wx-2.8/wx/msw/caret.h
include/wx-2.8/wx/msw/cdrom.ico
include/wx-2.8/wx/msw/checkbox.h
include/wx-2.8/wx/msw/checklst.h
include/wx-2.8/wx/msw/child.ico
include/wx-2.8/wx/msw/chkconf.h
include/wx-2.8/wx/msw/choice.h
include/wx-2.8/wx/msw/clipbrd.h
include/wx-2.8/wx/msw/colordlg.h
include/wx-2.8/wx/msw/colour.h
include/wx-2.8/wx/msw/colours.bmp
include/wx-2.8/wx/msw/combo.h
include/wx-2.8/wx/msw/combobox.h
include/wx-2.8/wx/msw/computer.ico
include/wx-2.8/wx/msw/control.h
include/wx-2.8/wx/msw/crashrpt.h
include/wx-2.8/wx/msw/cross.cur
include/wx-2.8/wx/msw/csquery.bmp
include/wx-2.8/wx/msw/cursor.h
include/wx-2.8/wx/msw/datectrl.h
include/wx-2.8/wx/msw/dc.h
include/wx-2.8/wx/msw/dcclient.h
include/wx-2.8/wx/msw/dcmemory.h
include/wx-2.8/wx/msw/dcprint.h
include/wx-2.8/wx/msw/dcscreen.h
include/wx-2.8/wx/msw/dde.h
include/wx-2.8/wx/msw/debughlp.h
include/wx-2.8/wx/msw/dialog.h
include/wx-2.8/wx/msw/dib.h
include/wx-2.8/wx/msw/dirdlg.h
include/wx-2.8/wx/msw/dragimag.h
include/wx-2.8/wx/msw/drive.ico
include/wx-2.8/wx/msw/enhmeta.h
include/wx-2.8/wx/msw/evtloop.h
include/wx-2.8/wx/msw/fdrepdlg.h
include/wx-2.8/wx/msw/file1.ico
include/wx-2.8/wx/msw/filedlg.h
include/wx-2.8/wx/msw/floppy.ico
include/wx-2.8/wx/msw/folder1.ico
include/wx-2.8/wx/msw/folder2.ico
include/wx-2.8/wx/msw/font.h
include/wx-2.8/wx/msw/fontdlg.h
include/wx-2.8/wx/msw/frame.h
include/wx-2.8/wx/msw/gauge95.h
include/wx-2.8/wx/msw/gccpriv.h
include/wx-2.8/wx/msw/gdiimage.h
include/wx-2.8/wx/msw/glcanvas.h
include/wx-2.8/wx/msw/gsockmsw.h
include/wx-2.8/wx/msw/hand.cur
include/wx-2.8/wx/msw/helpbest.h
include/wx-2.8/wx/msw/helpchm.h
include/wx-2.8/wx/msw/helpwin.h
include/wx-2.8/wx/msw/htmlhelp.h
include/wx-2.8/wx/msw/ia64.manifest
include/wx-2.8/wx/msw/icon.h
include/wx-2.8/wx/msw/imaglist.h
include/wx-2.8/wx/msw/iniconf.h
include/wx-2.8/wx/msw/joystick.h
include/wx-2.8/wx/msw/libraries.h
include/wx-2.8/wx/msw/listbox.h
include/wx-2.8/wx/msw/listctrl.h
include/wx-2.8/wx/msw/magnif1.cur
include/wx-2.8/wx/msw/mdi.h
include/wx-2.8/wx/msw/mdi.ico
include/wx-2.8/wx/msw/menu.h
include/wx-2.8/wx/msw/menuitem.h
include/wx-2.8/wx/msw/metafile.h
include/wx-2.8/wx/msw/mimetype.h
include/wx-2.8/wx/msw/minifram.h
include/wx-2.8/wx/msw/missing.h
include/wx-2.8/wx/msw/msgdlg.h
include/wx-2.8/wx/msw/mslu.h
include/wx-2.8/wx/msw/msvcrt.h
include/wx-2.8/wx/msw/notebook.h
include/wx-2.8/wx/msw/ole/access.h
include/wx-2.8/wx/msw/ole/activex.h
include/wx-2.8/wx/msw/ole/automtn.h
include/wx-2.8/wx/msw/ole/dataform.h
include/wx-2.8/wx/msw/ole/dataobj.h
include/wx-2.8/wx/msw/ole/dataobj2.h
include/wx-2.8/wx/msw/ole/dropsrc.h
include/wx-2.8/wx/msw/ole/droptgt.h
include/wx-2.8/wx/msw/ole/oleutils.h
include/wx-2.8/wx/msw/ole/uuid.h
include/wx-2.8/wx/msw/palette.h
include/wx-2.8/wx/msw/pbrush.cur
include/wx-2.8/wx/msw/pen.h
include/wx-2.8/wx/msw/pencil.cur
include/wx-2.8/wx/msw/pntleft.cur
include/wx-2.8/wx/msw/pntright.cur
include/wx-2.8/wx/msw/popupwin.h
include/wx-2.8/wx/msw/printdlg.h
include/wx-2.8/wx/msw/printwin.h
include/wx-2.8/wx/msw/private.h
include/wx-2.8/wx/msw/question.ico
include/wx-2.8/wx/msw/radiobox.h
include/wx-2.8/wx/msw/radiobut.h
include/wx-2.8/wx/msw/rcdefs.h
include/wx-2.8/wx/msw/regconf.h
include/wx-2.8/wx/msw/region.h
include/wx-2.8/wx/msw/registry.h
include/wx-2.8/wx/msw/removble.ico
include/wx-2.8/wx/msw/rightarr.cur
include/wx-2.8/wx/msw/roller.cur
include/wx-2.8/wx/msw/scrolbar.h
include/wx-2.8/wx/msw/seh.h
include/wx-2.8/wx/msw/setup0.h
include/wx-2.8/wx/msw/slider95.h
include/wx-2.8/wx/msw/sound.h
include/wx-2.8/wx/msw/spinbutt.h
include/wx-2.8/wx/msw/spinctrl.h
include/wx-2.8/wx/msw/stackwalk.h
include/wx-2.8/wx/msw/statbmp.h
include/wx-2.8/wx/msw/statbox.h
include/wx-2.8/wx/msw/statbr95.h
include/wx-2.8/wx/msw/statline.h
include/wx-2.8/wx/msw/stattext.h
include/wx-2.8/wx/msw/std.ico
include/wx-2.8/wx/msw/stdpaths.h
include/wx-2.8/wx/msw/tabctrl.h
include/wx-2.8/wx/msw/taskbar.h
include/wx-2.8/wx/msw/tbar95.h
include/wx-2.8/wx/msw/textctrl.h
include/wx-2.8/wx/msw/tglbtn.h
include/wx-2.8/wx/msw/timer.h
include/wx-2.8/wx/msw/tooltip.h
include/wx-2.8/wx/msw/toplevel.h
include/wx-2.8/wx/msw/treectrl.h
include/wx-2.8/wx/msw/uxtheme.h
include/wx-2.8/wx/msw/uxthemep.h
include/wx-2.8/wx/msw/window.h
include/wx-2.8/wx/msw/winundef.h
include/wx-2.8/wx/msw/wrapcctl.h
include/wx-2.8/wx/msw/wrapcdlg.h
include/wx-2.8/wx/msw/wrapwin.h
include/wx-2.8/wx/msw/wx.manifest
include/wx-2.8/wx/msw/wx.rc
include/wx-2.8/wx/notebook.h
include/wx-2.8/wx/numdlg.h
include/wx-2.8/wx/object.h
include/wx-2.8/wx/odcombo.h
include/wx-2.8/wx/overlay.h
include/wx-2.8/wx/ownerdrw.h
include/wx-2.8/wx/palette.h
include/wx-2.8/wx/panel.h
include/wx-2.8/wx/paper.h
include/wx-2.8/wx/pen.h
include/wx-2.8/wx/pickerbase.h
include/wx-2.8/wx/platform.h
include/wx-2.8/wx/platinfo.h
include/wx-2.8/wx/popupwin.h
include/wx-2.8/wx/power.h
include/wx-2.8/wx/print.h
include/wx-2.8/wx/printdlg.h
include/wx-2.8/wx/prntbase.h
include/wx-2.8/wx/process.h
include/wx-2.8/wx/progdlg.h
include/wx-2.8/wx/propdlg.h
include/wx-2.8/wx/protocol/file.h
include/wx-2.8/wx/protocol/ftp.h
include/wx-2.8/wx/protocol/http.h
include/wx-2.8/wx/protocol/protocol.h
include/wx-2.8/wx/ptr_scpd.h
include/wx-2.8/wx/quantize.h
include/wx-2.8/wx/radiobox.h
include/wx-2.8/wx/radiobut.h
include/wx-2.8/wx/rawbmp.h
include/wx-2.8/wx/recguard.h
include/wx-2.8/wx/regex.h
include/wx-2.8/wx/region.h
include/wx-2.8/wx/renderer.h
include/wx-2.8/wx/richtext/richtextbuffer.h
include/wx-2.8/wx/richtext/richtextctrl.h
include/wx-2.8/wx/richtext/richtextformatdlg.h
include/wx-2.8/wx/richtext/richtexthtml.h
include/wx-2.8/wx/richtext/richtextprint.h
include/wx-2.8/wx/richtext/richtextstyledlg.h
include/wx-2.8/wx/richtext/richtextstyles.h
include/wx-2.8/wx/richtext/richtextsymboldlg.h
include/wx-2.8/wx/richtext/richtextxml.h
include/wx-2.8/wx/sashwin.h
include/wx-2.8/wx/sckaddr.h
include/wx-2.8/wx/sckipc.h
include/wx-2.8/wx/sckstrm.h
include/wx-2.8/wx/scopeguard.h
include/wx-2.8/wx/scrolbar.h
include/wx-2.8/wx/scrolwin.h
include/wx-2.8/wx/selstore.h
include/wx-2.8/wx/settings.h
include/wx-2.8/wx/sizer.h
include/wx-2.8/wx/slider.h
include/wx-2.8/wx/snglinst.h
include/wx-2.8/wx/socket.h
include/wx-2.8/wx/sound.h
include/wx-2.8/wx/spinbutt.h
include/wx-2.8/wx/spinctrl.h
include/wx-2.8/wx/splash.h
include/wx-2.8/wx/splitter.h
include/wx-2.8/wx/srchctrl.h
include/wx-2.8/wx/sstream.h
include/wx-2.8/wx/stack.h
include/wx-2.8/wx/stackwalk.h
include/wx-2.8/wx/statbmp.h
include/wx-2.8/wx/statbox.h
include/wx-2.8/wx/statline.h
include/wx-2.8/wx/stattext.h
include/wx-2.8/wx/statusbr.h
include/wx-2.8/wx/stdpaths.h
include/wx-2.8/wx/stockitem.h
include/wx-2.8/wx/stopwatch.h
include/wx-2.8/wx/strconv.h
include/wx-2.8/wx/stream.h
include/wx-2.8/wx/string.h
include/wx-2.8/wx/sysopt.h
include/wx-2.8/wx/tab.h
include/wx-2.8/wx/tabctrl.h
include/wx-2.8/wx/tarstrm.h
include/wx-2.8/wx/taskbar.h
include/wx-2.8/wx/tbarbase.h
include/wx-2.8/wx/textbuf.h
include/wx-2.8/wx/textctrl.h
include/wx-2.8/wx/textdlg.h
include/wx-2.8/wx/textfile.h
include/wx-2.8/wx/tglbtn.h
include/wx-2.8/wx/thread.h
include/wx-2.8/wx/thrimpl.cpp
include/wx-2.8/wx/timer.h
include/wx-2.8/wx/tipdlg.h
include/wx-2.8/wx/tipwin.h
include/wx-2.8/wx/tokenzr.h
include/wx-2.8/wx/toolbar.h
include/wx-2.8/wx/toolbook.h
include/wx-2.8/wx/tooltip.h
include/wx-2.8/wx/toplevel.h
include/wx-2.8/wx/treebase.h
include/wx-2.8/wx/treebook.h
include/wx-2.8/wx/treectrl.h
include/wx-2.8/wx/txtstrm.h
include/wx-2.8/wx/types.h
include/wx-2.8/wx/uri.h
include/wx-2.8/wx/url.h
include/wx-2.8/wx/utils.h
include/wx-2.8/wx/valgen.h
include/wx-2.8/wx/validate.h
include/wx-2.8/wx/valtext.h
include/wx-2.8/wx/variant.h
include/wx-2.8/wx/vector.h
include/wx-2.8/wx/version.h
include/wx-2.8/wx/vidmode.h
include/wx-2.8/wx/vlbox.h
include/wx-2.8/wx/vms_x_fix.h
include/wx-2.8/wx/volume.h
include/wx-2.8/wx/vscroll.h
include/wx-2.8/wx/wave.h
include/wx-2.8/wx/wfstream.h
include/wx-2.8/wx/window.h
include/wx-2.8/wx/wizard.h
include/wx-2.8/wx/wupdlock.h
include/wx-2.8/wx/wx.h
include/wx-2.8/wx/wxchar.h
include/wx-2.8/wx/wxhtml.h
include/wx-2.8/wx/wxprec.h
include/wx-2.8/wx/xml/xml.h
include/wx-2.8/wx/xpmdecod.h
include/wx-2.8/wx/xpmhand.h
include/wx-2.8/wx/xrc/xh_all.h
include/wx-2.8/wx/xrc/xh_animatctrl.h
include/wx-2.8/wx/xrc/xh_bmp.h
include/wx-2.8/wx/xrc/xh_bmpbt.h
include/wx-2.8/wx/xrc/xh_bmpcbox.h
include/wx-2.8/wx/xrc/xh_bttn.h
include/wx-2.8/wx/xrc/xh_cald.h
include/wx-2.8/wx/xrc/xh_chckb.h
include/wx-2.8/wx/xrc/xh_chckl.h
include/wx-2.8/wx/xrc/xh_choic.h
include/wx-2.8/wx/xrc/xh_choicbk.h
include/wx-2.8/wx/xrc/xh_clrpicker.h
include/wx-2.8/wx/xrc/xh_collpane.h
include/wx-2.8/wx/xrc/xh_combo.h
include/wx-2.8/wx/xrc/xh_datectrl.h
include/wx-2.8/wx/xrc/xh_dirpicker.h
include/wx-2.8/wx/xrc/xh_dlg.h
include/wx-2.8/wx/xrc/xh_filepicker.h
include/wx-2.8/wx/xrc/xh_fontpicker.h
include/wx-2.8/wx/xrc/xh_frame.h
include/wx-2.8/wx/xrc/xh_gauge.h
include/wx-2.8/wx/xrc/xh_gdctl.h
include/wx-2.8/wx/xrc/xh_grid.h
include/wx-2.8/wx/xrc/xh_html.h
include/wx-2.8/wx/xrc/xh_htmllbox.h
include/wx-2.8/wx/xrc/xh_hyperlink.h
include/wx-2.8/wx/xrc/xh_listb.h
include/wx-2.8/wx/xrc/xh_listbk.h
include/wx-2.8/wx/xrc/xh_listc.h
include/wx-2.8/wx/xrc/xh_mdi.h
include/wx-2.8/wx/xrc/xh_menu.h
include/wx-2.8/wx/xrc/xh_notbk.h
include/wx-2.8/wx/xrc/xh_odcombo.h
include/wx-2.8/wx/xrc/xh_panel.h
include/wx-2.8/wx/xrc/xh_propdlg.h
include/wx-2.8/wx/xrc/xh_radbt.h
include/wx-2.8/wx/xrc/xh_radbx.h
include/wx-2.8/wx/xrc/xh_scrol.h
include/wx-2.8/wx/xrc/xh_scwin.h
include/wx-2.8/wx/xrc/xh_sizer.h
include/wx-2.8/wx/xrc/xh_slidr.h
include/wx-2.8/wx/xrc/xh_spin.h
include/wx-2.8/wx/xrc/xh_split.h
include/wx-2.8/wx/xrc/xh_statbar.h
include/wx-2.8/wx/xrc/xh_stbmp.h
include/wx-2.8/wx/xrc/xh_stbox.h
include/wx-2.8/wx/xrc/xh_stlin.h
include/wx-2.8/wx/xrc/xh_sttxt.h
include/wx-2.8/wx/xrc/xh_text.h
include/wx-2.8/wx/xrc/xh_tglbtn.h
include/wx-2.8/wx/xrc/xh_toolb.h
include/wx-2.8/wx/xrc/xh_tree.h
include/wx-2.8/wx/xrc/xh_treebk.h
include/wx-2.8/wx/xrc/xh_unkwn.h
include/wx-2.8/wx/xrc/xh_wizrd.h
include/wx-2.8/wx/xrc/xmlres.h
include/wx-2.8/wx/xti.h
include/wx-2.8/wx/xtistrm.h
include/wx-2.8/wx/xtixml.h
include/wx-2.8/wx/zipstrm.h
include/wx-2.8/wx/zstream.h
lib/libwx_baseu-2.8.dll.a
lib/libwx_baseu_net-2.8.dll.a
lib/libwx_baseu_xml-2.8.dll.a
lib/libwx_mswu_adv-2.8.dll.a
lib/libwx_mswu_aui-2.8.dll.a
lib/libwx_mswu_core-2.8.dll.a
lib/libwx_mswu_html-2.8.dll.a
lib/libwx_mswu_qa-2.8.dll.a
lib/libwx_mswu_richtext-2.8.dll.a
lib/libwx_mswu_xrc-2.8.dll.a
lib/wx/config/msw-unicode-release-2.8
lib/wx/include/msw-unicode-release-2.8/wx/msw/rcdefs.h
lib/wx/include/msw-unicode-release-2.8/wx/setup.h
lib/wxbase28u_gcc.dll
lib/wxbase28u_net_gcc.dll
lib/wxbase28u_xml_gcc.dll
lib/wxmsw28u_adv_gcc.dll
lib/wxmsw28u_aui_gcc.dll
lib/wxmsw28u_core_gcc.dll
lib/wxmsw28u_html_gcc.dll
lib/wxmsw28u_qa_gcc.dll
lib/wxmsw28u_richtext_gcc.dll
lib/wxmsw28u_xrc_gcc.dll
share/aclocal/wxwin.m4
share/bakefile/presets/wx.bkl
share/bakefile/presets/wx_unix.bkl
share/bakefile/presets/wx_win32.bkl

I'll make a Zip archive of these files for later use. Now that I built the wxMSW library, I can start compiling applications based on wxWidgets ;)



Building wxMSW into a Shared, Monolithic Build


To produce a shared library with a single DLL, I configured wxMSW like this:


../configure --prefix=/mingw --with-msw --enable-shared --enable-monolithic --enable-optimise --enable-intl --enable-mslu --enable-unicode --enable-official_build --without-subdirs --with-regex

make

make install

This installs the following files:


bin/wx-config
include/wx-2.8/wx/aboutdlg.h
include/wx-2.8/wx/accel.h
include/wx-2.8/wx/access.h
include/wx-2.8/wx/afterstd.h
include/wx-2.8/wx/anidecod.h
include/wx-2.8/wx/animate.h
include/wx-2.8/wx/animdecod.h
include/wx-2.8/wx/app.h
include/wx-2.8/wx/apptrait.h
include/wx-2.8/wx/archive.h
include/wx-2.8/wx/arrimpl.cpp
include/wx-2.8/wx/arrstr.h
include/wx-2.8/wx/artprov.h
include/wx-2.8/wx/aui/aui.h
include/wx-2.8/wx/aui/auibar.h
include/wx-2.8/wx/aui/auibook.h
include/wx-2.8/wx/aui/dockart.h
include/wx-2.8/wx/aui/floatpane.h
include/wx-2.8/wx/aui/framemanager.h
include/wx-2.8/wx/aui/tabmdi.h
include/wx-2.8/wx/beforestd.h
include/wx-2.8/wx/bitmap.h
include/wx-2.8/wx/bmpbuttn.h
include/wx-2.8/wx/bmpcbox.h
include/wx-2.8/wx/bookctrl.h
include/wx-2.8/wx/brush.h
include/wx-2.8/wx/buffer.h
include/wx-2.8/wx/build.h
include/wx-2.8/wx/busyinfo.h
include/wx-2.8/wx/button.h
include/wx-2.8/wx/calctrl.h
include/wx-2.8/wx/caret.h
include/wx-2.8/wx/checkbox.h
include/wx-2.8/wx/checklst.h
include/wx-2.8/wx/chkconf.h
include/wx-2.8/wx/choicdlg.h
include/wx-2.8/wx/choice.h
include/wx-2.8/wx/choicebk.h
include/wx-2.8/wx/clipbrd.h
include/wx-2.8/wx/clntdata.h
include/wx-2.8/wx/clrpicker.h
include/wx-2.8/wx/cmdline.h
include/wx-2.8/wx/cmdproc.h
include/wx-2.8/wx/cmndata.h
include/wx-2.8/wx/collpane.h
include/wx-2.8/wx/colordlg.h
include/wx-2.8/wx/colour.h
include/wx-2.8/wx/combo.h
include/wx-2.8/wx/combobox.h
include/wx-2.8/wx/confbase.h
include/wx-2.8/wx/config.h
include/wx-2.8/wx/containr.h
include/wx-2.8/wx/control.h
include/wx-2.8/wx/convauto.h
include/wx-2.8/wx/cpp.h
include/wx-2.8/wx/cshelp.h
include/wx-2.8/wx/ctrlsub.h
include/wx-2.8/wx/cursor.h
include/wx-2.8/wx/dataobj.h
include/wx-2.8/wx/dataview.h
include/wx-2.8/wx/datectrl.h
include/wx-2.8/wx/dateevt.h
include/wx-2.8/wx/datetime.h
include/wx-2.8/wx/datstrm.h
include/wx-2.8/wx/db.h
include/wx-2.8/wx/dbgrid.h
include/wx-2.8/wx/dbkeyg.h
include/wx-2.8/wx/dbtable.h
include/wx-2.8/wx/dc.h
include/wx-2.8/wx/dcbuffer.h
include/wx-2.8/wx/dcclient.h
include/wx-2.8/wx/dcgraph.h
include/wx-2.8/wx/dcmemory.h
include/wx-2.8/wx/dcmirror.h
include/wx-2.8/wx/dcprint.h
include/wx-2.8/wx/dcps.h
include/wx-2.8/wx/dcscreen.h
include/wx-2.8/wx/dde.h
include/wx-2.8/wx/debug.h
include/wx-2.8/wx/debugrpt.h
include/wx-2.8/wx/defs.h
include/wx-2.8/wx/dialog.h
include/wx-2.8/wx/dialup.h
include/wx-2.8/wx/dir.h
include/wx-2.8/wx/dirctrl.h
include/wx-2.8/wx/dirdlg.h
include/wx-2.8/wx/display.h
include/wx-2.8/wx/display_impl.h
include/wx-2.8/wx/dlimpexp.h
include/wx-2.8/wx/dnd.h
include/wx-2.8/wx/docmdi.h
include/wx-2.8/wx/docview.h
include/wx-2.8/wx/dragimag.h
include/wx-2.8/wx/dynarray.h
include/wx-2.8/wx/dynlib.h
include/wx-2.8/wx/dynload.h
include/wx-2.8/wx/effects.h
include/wx-2.8/wx/encconv.h
include/wx-2.8/wx/encinfo.h
include/wx-2.8/wx/event.h
include/wx-2.8/wx/evtloop.h
include/wx-2.8/wx/except.h
include/wx-2.8/wx/fdrepdlg.h
include/wx-2.8/wx/features.h
include/wx-2.8/wx/ffile.h
include/wx-2.8/wx/file.h
include/wx-2.8/wx/fileconf.h
include/wx-2.8/wx/filedlg.h
include/wx-2.8/wx/filefn.h
include/wx-2.8/wx/filename.h
include/wx-2.8/wx/filepicker.h
include/wx-2.8/wx/filesys.h
include/wx-2.8/wx/fmappriv.h
include/wx-2.8/wx/font.h
include/wx-2.8/wx/fontdlg.h
include/wx-2.8/wx/fontenc.h
include/wx-2.8/wx/fontenum.h
include/wx-2.8/wx/fontmap.h
include/wx-2.8/wx/fontpicker.h
include/wx-2.8/wx/fontutil.h
include/wx-2.8/wx/frame.h
include/wx-2.8/wx/fs_arc.h
include/wx-2.8/wx/fs_filter.h
include/wx-2.8/wx/fs_inet.h
include/wx-2.8/wx/fs_mem.h
include/wx-2.8/wx/fs_zip.h
include/wx-2.8/wx/gauge.h
include/wx-2.8/wx/gbsizer.h
include/wx-2.8/wx/gdicmn.h
include/wx-2.8/wx/gdiobj.h
include/wx-2.8/wx/generic/aboutdlgg.h
include/wx-2.8/wx/generic/accel.h
include/wx-2.8/wx/generic/animate.h
include/wx-2.8/wx/generic/bmpcbox.h
include/wx-2.8/wx/generic/busyinfo.h
include/wx-2.8/wx/generic/buttonbar.h
include/wx-2.8/wx/generic/calctrl.h
include/wx-2.8/wx/generic/choicdgg.h
include/wx-2.8/wx/generic/clrpickerg.h
include/wx-2.8/wx/generic/collpaneg.h
include/wx-2.8/wx/generic/colrdlgg.h
include/wx-2.8/wx/generic/combo.h
include/wx-2.8/wx/generic/dataview.h
include/wx-2.8/wx/generic/datectrl.h
include/wx-2.8/wx/generic/dcpsg.h
include/wx-2.8/wx/generic/dirctrlg.h
include/wx-2.8/wx/generic/dragimgg.h
include/wx-2.8/wx/generic/filedlgg.h
include/wx-2.8/wx/generic/filepickerg.h
include/wx-2.8/wx/generic/fontdlgg.h
include/wx-2.8/wx/generic/fontpickerg.h
include/wx-2.8/wx/generic/grid.h
include/wx-2.8/wx/generic/gridctrl.h
include/wx-2.8/wx/generic/gridsel.h
include/wx-2.8/wx/generic/helpext.h
include/wx-2.8/wx/generic/laywin.h
include/wx-2.8/wx/generic/logg.h
include/wx-2.8/wx/generic/msgdlgg.h
include/wx-2.8/wx/generic/notebook.h
include/wx-2.8/wx/generic/numdlgg.h
include/wx-2.8/wx/generic/panelg.h
include/wx-2.8/wx/generic/printps.h
include/wx-2.8/wx/generic/prntdlgg.h
include/wx-2.8/wx/generic/progdlgg.h
include/wx-2.8/wx/generic/propdlg.h
include/wx-2.8/wx/generic/sashwin.h
include/wx-2.8/wx/generic/scrolwin.h
include/wx-2.8/wx/generic/spinctlg.h
include/wx-2.8/wx/generic/splash.h
include/wx-2.8/wx/generic/splitter.h
include/wx-2.8/wx/generic/srchctlg.h
include/wx-2.8/wx/generic/textdlgg.h
include/wx-2.8/wx/generic/timer.h
include/wx-2.8/wx/generic/treectlg.h
include/wx-2.8/wx/generic/wizard.h
include/wx-2.8/wx/geometry.h
include/wx-2.8/wx/gifdecod.h
include/wx-2.8/wx/glcanvas.h
include/wx-2.8/wx/graphics.h
include/wx-2.8/wx/grid.h
include/wx-2.8/wx/gsocket.h
include/wx-2.8/wx/hash.h
include/wx-2.8/wx/hashmap.h
include/wx-2.8/wx/hashset.h
include/wx-2.8/wx/help.h
include/wx-2.8/wx/helpbase.h
include/wx-2.8/wx/helphtml.h
include/wx-2.8/wx/helpwin.h
include/wx-2.8/wx/html/forcelnk.h
include/wx-2.8/wx/html/helpctrl.h
include/wx-2.8/wx/html/helpdata.h
include/wx-2.8/wx/html/helpdlg.h
include/wx-2.8/wx/html/helpfrm.h
include/wx-2.8/wx/html/helpwnd.h
include/wx-2.8/wx/html/htmlcell.h
include/wx-2.8/wx/html/htmldefs.h
include/wx-2.8/wx/html/htmlfilt.h
include/wx-2.8/wx/html/htmlpars.h
include/wx-2.8/wx/html/htmlproc.h
include/wx-2.8/wx/html/htmltag.h
include/wx-2.8/wx/html/htmlwin.h
include/wx-2.8/wx/html/htmprint.h
include/wx-2.8/wx/html/m_templ.h
include/wx-2.8/wx/html/winpars.h
include/wx-2.8/wx/htmllbox.h
include/wx-2.8/wx/hyperlink.h
include/wx-2.8/wx/icon.h
include/wx-2.8/wx/iconbndl.h
include/wx-2.8/wx/iconloc.h
include/wx-2.8/wx/imagbmp.h
include/wx-2.8/wx/image.h
include/wx-2.8/wx/imaggif.h
include/wx-2.8/wx/imagiff.h
include/wx-2.8/wx/imagjpeg.h
include/wx-2.8/wx/imaglist.h
include/wx-2.8/wx/imagpcx.h
include/wx-2.8/wx/imagpng.h
include/wx-2.8/wx/imagpnm.h
include/wx-2.8/wx/imagtga.h
include/wx-2.8/wx/imagtiff.h
include/wx-2.8/wx/imagxpm.h
include/wx-2.8/wx/init.h
include/wx-2.8/wx/intl.h
include/wx-2.8/wx/iosfwrap.h
include/wx-2.8/wx/ioswrap.h
include/wx-2.8/wx/ipc.h
include/wx-2.8/wx/ipcbase.h
include/wx-2.8/wx/isql.h
include/wx-2.8/wx/isqlext.h
include/wx-2.8/wx/joystick.h
include/wx-2.8/wx/layout.h
include/wx-2.8/wx/laywin.h
include/wx-2.8/wx/link.h
include/wx-2.8/wx/list.h
include/wx-2.8/wx/listbase.h
include/wx-2.8/wx/listbook.h
include/wx-2.8/wx/listbox.h
include/wx-2.8/wx/listctrl.h
include/wx-2.8/wx/listimpl.cpp
include/wx-2.8/wx/log.h
include/wx-2.8/wx/longlong.h
include/wx-2.8/wx/math.h
include/wx-2.8/wx/matrix.h
include/wx-2.8/wx/mdi.h
include/wx-2.8/wx/mediactrl.h
include/wx-2.8/wx/memconf.h
include/wx-2.8/wx/memory.h
include/wx-2.8/wx/memtext.h
include/wx-2.8/wx/menu.h
include/wx-2.8/wx/menuitem.h
include/wx-2.8/wx/metafile.h
include/wx-2.8/wx/mimetype.h
include/wx-2.8/wx/minifram.h
include/wx-2.8/wx/module.h
include/wx-2.8/wx/msgdlg.h
include/wx-2.8/wx/msgout.h
include/wx-2.8/wx/mstream.h
include/wx-2.8/wx/msw/accel.h
include/wx-2.8/wx/msw/amd64.manifest
include/wx-2.8/wx/msw/app.h
include/wx-2.8/wx/msw/apptbase.h
include/wx-2.8/wx/msw/apptrait.h
include/wx-2.8/wx/msw/bitmap.h
include/wx-2.8/wx/msw/blank.cur
include/wx-2.8/wx/msw/bmpbuttn.h
include/wx-2.8/wx/msw/brush.h
include/wx-2.8/wx/msw/bullseye.cur
include/wx-2.8/wx/msw/button.h
include/wx-2.8/wx/msw/caret.h
include/wx-2.8/wx/msw/cdrom.ico
include/wx-2.8/wx/msw/checkbox.h
include/wx-2.8/wx/msw/checklst.h
include/wx-2.8/wx/msw/child.ico
include/wx-2.8/wx/msw/chkconf.h
include/wx-2.8/wx/msw/choice.h
include/wx-2.8/wx/msw/clipbrd.h
include/wx-2.8/wx/msw/colordlg.h
include/wx-2.8/wx/msw/colour.h
include/wx-2.8/wx/msw/colours.bmp
include/wx-2.8/wx/msw/combo.h
include/wx-2.8/wx/msw/combobox.h
include/wx-2.8/wx/msw/computer.ico
include/wx-2.8/wx/msw/control.h
include/wx-2.8/wx/msw/crashrpt.h
include/wx-2.8/wx/msw/cross.cur
include/wx-2.8/wx/msw/csquery.bmp
include/wx-2.8/wx/msw/cursor.h
include/wx-2.8/wx/msw/datectrl.h
include/wx-2.8/wx/msw/dc.h
include/wx-2.8/wx/msw/dcclient.h
include/wx-2.8/wx/msw/dcmemory.h
include/wx-2.8/wx/msw/dcprint.h
include/wx-2.8/wx/msw/dcscreen.h
include/wx-2.8/wx/msw/dde.h
include/wx-2.8/wx/msw/debughlp.h
include/wx-2.8/wx/msw/dialog.h
include/wx-2.8/wx/msw/dib.h
include/wx-2.8/wx/msw/dirdlg.h
include/wx-2.8/wx/msw/dragimag.h
include/wx-2.8/wx/msw/drive.ico
include/wx-2.8/wx/msw/enhmeta.h
include/wx-2.8/wx/msw/evtloop.h
include/wx-2.8/wx/msw/fdrepdlg.h
include/wx-2.8/wx/msw/file1.ico
include/wx-2.8/wx/msw/filedlg.h
include/wx-2.8/wx/msw/floppy.ico
include/wx-2.8/wx/msw/folder1.ico
include/wx-2.8/wx/msw/folder2.ico
include/wx-2.8/wx/msw/font.h
include/wx-2.8/wx/msw/fontdlg.h
include/wx-2.8/wx/msw/frame.h
include/wx-2.8/wx/msw/gauge95.h
include/wx-2.8/wx/msw/gccpriv.h
include/wx-2.8/wx/msw/gdiimage.h
include/wx-2.8/wx/msw/glcanvas.h
include/wx-2.8/wx/msw/gsockmsw.h
include/wx-2.8/wx/msw/hand.cur
include/wx-2.8/wx/msw/helpbest.h
include/wx-2.8/wx/msw/helpchm.h
include/wx-2.8/wx/msw/helpwin.h
include/wx-2.8/wx/msw/htmlhelp.h
include/wx-2.8/wx/msw/ia64.manifest
include/wx-2.8/wx/msw/icon.h
include/wx-2.8/wx/msw/imaglist.h
include/wx-2.8/wx/msw/iniconf.h
include/wx-2.8/wx/msw/joystick.h
include/wx-2.8/wx/msw/libraries.h
include/wx-2.8/wx/msw/listbox.h
include/wx-2.8/wx/msw/listctrl.h
include/wx-2.8/wx/msw/magnif1.cur
include/wx-2.8/wx/msw/mdi.h
include/wx-2.8/wx/msw/mdi.ico
include/wx-2.8/wx/msw/menu.h
include/wx-2.8/wx/msw/menuitem.h
include/wx-2.8/wx/msw/metafile.h
include/wx-2.8/wx/msw/mimetype.h
include/wx-2.8/wx/msw/minifram.h
include/wx-2.8/wx/msw/missing.h
include/wx-2.8/wx/msw/msgdlg.h
include/wx-2.8/wx/msw/mslu.h
include/wx-2.8/wx/msw/msvcrt.h
include/wx-2.8/wx/msw/notebook.h
include/wx-2.8/wx/msw/ole/access.h
include/wx-2.8/wx/msw/ole/activex.h
include/wx-2.8/wx/msw/ole/automtn.h
include/wx-2.8/wx/msw/ole/dataform.h
include/wx-2.8/wx/msw/ole/dataobj.h
include/wx-2.8/wx/msw/ole/dataobj2.h
include/wx-2.8/wx/msw/ole/dropsrc.h
include/wx-2.8/wx/msw/ole/droptgt.h
include/wx-2.8/wx/msw/ole/oleutils.h
include/wx-2.8/wx/msw/ole/uuid.h
include/wx-2.8/wx/msw/palette.h
include/wx-2.8/wx/msw/pbrush.cur
include/wx-2.8/wx/msw/pen.h
include/wx-2.8/wx/msw/pencil.cur
include/wx-2.8/wx/msw/pntleft.cur
include/wx-2.8/wx/msw/pntright.cur
include/wx-2.8/wx/msw/popupwin.h
include/wx-2.8/wx/msw/printdlg.h
include/wx-2.8/wx/msw/printwin.h
include/wx-2.8/wx/msw/private.h
include/wx-2.8/wx/msw/question.ico
include/wx-2.8/wx/msw/radiobox.h
include/wx-2.8/wx/msw/radiobut.h
include/wx-2.8/wx/msw/rcdefs.h
include/wx-2.8/wx/msw/regconf.h
include/wx-2.8/wx/msw/region.h
include/wx-2.8/wx/msw/registry.h
include/wx-2.8/wx/msw/removble.ico
include/wx-2.8/wx/msw/rightarr.cur
include/wx-2.8/wx/msw/roller.cur
include/wx-2.8/wx/msw/scrolbar.h
include/wx-2.8/wx/msw/seh.h
include/wx-2.8/wx/msw/setup0.h
include/wx-2.8/wx/msw/slider95.h
include/wx-2.8/wx/msw/sound.h
include/wx-2.8/wx/msw/spinbutt.h
include/wx-2.8/wx/msw/spinctrl.h
include/wx-2.8/wx/msw/stackwalk.h
include/wx-2.8/wx/msw/statbmp.h
include/wx-2.8/wx/msw/statbox.h
include/wx-2.8/wx/msw/statbr95.h
include/wx-2.8/wx/msw/statline.h
include/wx-2.8/wx/msw/stattext.h
include/wx-2.8/wx/msw/std.ico
include/wx-2.8/wx/msw/stdpaths.h
include/wx-2.8/wx/msw/tabctrl.h
include/wx-2.8/wx/msw/taskbar.h
include/wx-2.8/wx/msw/tbar95.h
include/wx-2.8/wx/msw/textctrl.h
include/wx-2.8/wx/msw/tglbtn.h
include/wx-2.8/wx/msw/timer.h
include/wx-2.8/wx/msw/tooltip.h
include/wx-2.8/wx/msw/toplevel.h
include/wx-2.8/wx/msw/treectrl.h
include/wx-2.8/wx/msw/uxtheme.h
include/wx-2.8/wx/msw/uxthemep.h
include/wx-2.8/wx/msw/window.h
include/wx-2.8/wx/msw/winundef.h
include/wx-2.8/wx/msw/wrapcctl.h
include/wx-2.8/wx/msw/wrapcdlg.h
include/wx-2.8/wx/msw/wrapwin.h
include/wx-2.8/wx/msw/wx.manifest
include/wx-2.8/wx/msw/wx.rc
include/wx-2.8/wx/notebook.h
include/wx-2.8/wx/numdlg.h
include/wx-2.8/wx/object.h
include/wx-2.8/wx/odcombo.h
include/wx-2.8/wx/overlay.h
include/wx-2.8/wx/ownerdrw.h
include/wx-2.8/wx/palette.h
include/wx-2.8/wx/panel.h
include/wx-2.8/wx/paper.h
include/wx-2.8/wx/pen.h
include/wx-2.8/wx/pickerbase.h
include/wx-2.8/wx/platform.h
include/wx-2.8/wx/platinfo.h
include/wx-2.8/wx/popupwin.h
include/wx-2.8/wx/power.h
include/wx-2.8/wx/print.h
include/wx-2.8/wx/printdlg.h
include/wx-2.8/wx/prntbase.h
include/wx-2.8/wx/process.h
include/wx-2.8/wx/progdlg.h
include/wx-2.8/wx/propdlg.h
include/wx-2.8/wx/protocol/file.h
include/wx-2.8/wx/protocol/ftp.h
include/wx-2.8/wx/protocol/http.h
include/wx-2.8/wx/protocol/protocol.h
include/wx-2.8/wx/ptr_scpd.h
include/wx-2.8/wx/quantize.h
include/wx-2.8/wx/radiobox.h
include/wx-2.8/wx/radiobut.h
include/wx-2.8/wx/rawbmp.h
include/wx-2.8/wx/recguard.h
include/wx-2.8/wx/regex.h
include/wx-2.8/wx/region.h
include/wx-2.8/wx/renderer.h
include/wx-2.8/wx/richtext/richtextbuffer.h
include/wx-2.8/wx/richtext/richtextctrl.h
include/wx-2.8/wx/richtext/richtextformatdlg.h
include/wx-2.8/wx/richtext/richtexthtml.h
include/wx-2.8/wx/richtext/richtextprint.h
include/wx-2.8/wx/richtext/richtextstyledlg.h
include/wx-2.8/wx/richtext/richtextstyles.h
include/wx-2.8/wx/richtext/richtextsymboldlg.h
include/wx-2.8/wx/richtext/richtextxml.h
include/wx-2.8/wx/sashwin.h
include/wx-2.8/wx/sckaddr.h
include/wx-2.8/wx/sckipc.h
include/wx-2.8/wx/sckstrm.h
include/wx-2.8/wx/scopeguard.h
include/wx-2.8/wx/scrolbar.h
include/wx-2.8/wx/scrolwin.h
include/wx-2.8/wx/selstore.h
include/wx-2.8/wx/settings.h
include/wx-2.8/wx/sizer.h
include/wx-2.8/wx/slider.h
include/wx-2.8/wx/snglinst.h
include/wx-2.8/wx/socket.h
include/wx-2.8/wx/sound.h
include/wx-2.8/wx/spinbutt.h
include/wx-2.8/wx/spinctrl.h
include/wx-2.8/wx/splash.h
include/wx-2.8/wx/splitter.h
include/wx-2.8/wx/srchctrl.h
include/wx-2.8/wx/sstream.h
include/wx-2.8/wx/stack.h
include/wx-2.8/wx/stackwalk.h
include/wx-2.8/wx/statbmp.h
include/wx-2.8/wx/statbox.h
include/wx-2.8/wx/statline.h
include/wx-2.8/wx/stattext.h
include/wx-2.8/wx/statusbr.h
include/wx-2.8/wx/stdpaths.h
include/wx-2.8/wx/stockitem.h
include/wx-2.8/wx/stopwatch.h
include/wx-2.8/wx/strconv.h
include/wx-2.8/wx/stream.h
include/wx-2.8/wx/string.h
include/wx-2.8/wx/sysopt.h
include/wx-2.8/wx/tab.h
include/wx-2.8/wx/tabctrl.h
include/wx-2.8/wx/tarstrm.h
include/wx-2.8/wx/taskbar.h
include/wx-2.8/wx/tbarbase.h
include/wx-2.8/wx/textbuf.h
include/wx-2.8/wx/textctrl.h
include/wx-2.8/wx/textdlg.h
include/wx-2.8/wx/textfile.h
include/wx-2.8/wx/tglbtn.h
include/wx-2.8/wx/thread.h
include/wx-2.8/wx/thrimpl.cpp
include/wx-2.8/wx/timer.h
include/wx-2.8/wx/tipdlg.h
include/wx-2.8/wx/tipwin.h
include/wx-2.8/wx/tokenzr.h
include/wx-2.8/wx/toolbar.h
include/wx-2.8/wx/toolbook.h
include/wx-2.8/wx/tooltip.h
include/wx-2.8/wx/toplevel.h
include/wx-2.8/wx/treebase.h
include/wx-2.8/wx/treebook.h
include/wx-2.8/wx/treectrl.h
include/wx-2.8/wx/txtstrm.h
include/wx-2.8/wx/types.h
include/wx-2.8/wx/uri.h
include/wx-2.8/wx/url.h
include/wx-2.8/wx/utils.h
include/wx-2.8/wx/valgen.h
include/wx-2.8/wx/validate.h
include/wx-2.8/wx/valtext.h
include/wx-2.8/wx/variant.h
include/wx-2.8/wx/vector.h
include/wx-2.8/wx/version.h
include/wx-2.8/wx/vidmode.h
include/wx-2.8/wx/vlbox.h
include/wx-2.8/wx/vms_x_fix.h
include/wx-2.8/wx/volume.h
include/wx-2.8/wx/vscroll.h
include/wx-2.8/wx/wave.h
include/wx-2.8/wx/wfstream.h
include/wx-2.8/wx/window.h
include/wx-2.8/wx/wizard.h
include/wx-2.8/wx/wupdlock.h
include/wx-2.8/wx/wx.h
include/wx-2.8/wx/wxchar.h
include/wx-2.8/wx/wxhtml.h
include/wx-2.8/wx/wxprec.h
include/wx-2.8/wx/xml/xml.h
include/wx-2.8/wx/xpmdecod.h
include/wx-2.8/wx/xpmhand.h
include/wx-2.8/wx/xrc/xh_all.h
include/wx-2.8/wx/xrc/xh_animatctrl.h
include/wx-2.8/wx/xrc/xh_bmp.h
include/wx-2.8/wx/xrc/xh_bmpbt.h
include/wx-2.8/wx/xrc/xh_bmpcbox.h
include/wx-2.8/wx/xrc/xh_bttn.h
include/wx-2.8/wx/xrc/xh_cald.h
include/wx-2.8/wx/xrc/xh_chckb.h
include/wx-2.8/wx/xrc/xh_chckl.h
include/wx-2.8/wx/xrc/xh_choic.h
include/wx-2.8/wx/xrc/xh_choicbk.h
include/wx-2.8/wx/xrc/xh_clrpicker.h
include/wx-2.8/wx/xrc/xh_collpane.h
include/wx-2.8/wx/xrc/xh_combo.h
include/wx-2.8/wx/xrc/xh_datectrl.h
include/wx-2.8/wx/xrc/xh_dirpicker.h
include/wx-2.8/wx/xrc/xh_dlg.h
include/wx-2.8/wx/xrc/xh_filepicker.h
include/wx-2.8/wx/xrc/xh_fontpicker.h
include/wx-2.8/wx/xrc/xh_frame.h
include/wx-2.8/wx/xrc/xh_gauge.h
include/wx-2.8/wx/xrc/xh_gdctl.h
include/wx-2.8/wx/xrc/xh_grid.h
include/wx-2.8/wx/xrc/xh_html.h
include/wx-2.8/wx/xrc/xh_htmllbox.h
include/wx-2.8/wx/xrc/xh_hyperlink.h
include/wx-2.8/wx/xrc/xh_listb.h
include/wx-2.8/wx/xrc/xh_listbk.h
include/wx-2.8/wx/xrc/xh_listc.h
include/wx-2.8/wx/xrc/xh_mdi.h
include/wx-2.8/wx/xrc/xh_menu.h
include/wx-2.8/wx/xrc/xh_notbk.h
include/wx-2.8/wx/xrc/xh_odcombo.h
include/wx-2.8/wx/xrc/xh_panel.h
include/wx-2.8/wx/xrc/xh_propdlg.h
include/wx-2.8/wx/xrc/xh_radbt.h
include/wx-2.8/wx/xrc/xh_radbx.h
include/wx-2.8/wx/xrc/xh_scrol.h
include/wx-2.8/wx/xrc/xh_scwin.h
include/wx-2.8/wx/xrc/xh_sizer.h
include/wx-2.8/wx/xrc/xh_slidr.h
include/wx-2.8/wx/xrc/xh_spin.h
include/wx-2.8/wx/xrc/xh_split.h
include/wx-2.8/wx/xrc/xh_statbar.h
include/wx-2.8/wx/xrc/xh_stbmp.h
include/wx-2.8/wx/xrc/xh_stbox.h
include/wx-2.8/wx/xrc/xh_stlin.h
include/wx-2.8/wx/xrc/xh_sttxt.h
include/wx-2.8/wx/xrc/xh_text.h
include/wx-2.8/wx/xrc/xh_tglbtn.h
include/wx-2.8/wx/xrc/xh_toolb.h
include/wx-2.8/wx/xrc/xh_tree.h
include/wx-2.8/wx/xrc/xh_treebk.h
include/wx-2.8/wx/xrc/xh_unkwn.h
include/wx-2.8/wx/xrc/xh_wizrd.h
include/wx-2.8/wx/xrc/xmlres.h
include/wx-2.8/wx/xti.h
include/wx-2.8/wx/xtistrm.h
include/wx-2.8/wx/xtixml.h
include/wx-2.8/wx/zipstrm.h
include/wx-2.8/wx/zstream.h
lib/libwx_mswu-2.8.dll.a
lib/wx/config/msw-unicode-release-2.8
lib/wx/include/msw-unicode-release-2.8/wx/msw/rcdefs.h
lib/wx/include/msw-unicode-release-2.8/wx/setup.h
lib/wxmsw28u_gcc.dll
share/aclocal/wxwin.m4
share/bakefile/presets/wx.bkl
share/bakefile/presets/wx_unix.bkl
share/bakefile/presets/wx_win32.bkl


Compiling wxMSW into a Static, Monolithic Build


Although less ideal, building a static and monolithic library of wxMSW can simplify the build process of wxWidgets applications. For a static and monolithic build, I configured wxMSW with the following line:


../configure --prefix=/mingw --with-msw --disable-shared --enable-monolithic --enable-optimise --enable-intl --enable-mslu --enable-unicode --enable-official_build --without-subdirs --with-regex

Then, continue with make and make install. The following files are installed:


/bin/wx-config
/bin/wxrc-2.8
/bin/wxrc.exe
/include/wx-2.8/wx/aboutdlg.h
/include/wx-2.8/wx/accel.h
/include/wx-2.8/wx/access.h
/include/wx-2.8/wx/afterstd.h
/include/wx-2.8/wx/anidecod.h
/include/wx-2.8/wx/animate.h
/include/wx-2.8/wx/animdecod.h
/include/wx-2.8/wx/app.h
/include/wx-2.8/wx/apptrait.h
/include/wx-2.8/wx/archive.h
/include/wx-2.8/wx/arrimpl.cpp
/include/wx-2.8/wx/arrstr.h
/include/wx-2.8/wx/artprov.h
/include/wx-2.8/wx/aui/aui.h
/include/wx-2.8/wx/aui/auibar.h
/include/wx-2.8/wx/aui/auibook.h
/include/wx-2.8/wx/aui/dockart.h
/include/wx-2.8/wx/aui/floatpane.h
/include/wx-2.8/wx/aui/framemanager.h
/include/wx-2.8/wx/aui/tabmdi.h
/include/wx-2.8/wx/beforestd.h
/include/wx-2.8/wx/bitmap.h
/include/wx-2.8/wx/bmpbuttn.h
/include/wx-2.8/wx/bmpcbox.h
/include/wx-2.8/wx/bookctrl.h
/include/wx-2.8/wx/brush.h
/include/wx-2.8/wx/buffer.h
/include/wx-2.8/wx/build.h
/include/wx-2.8/wx/busyinfo.h
/include/wx-2.8/wx/button.h
/include/wx-2.8/wx/calctrl.h
/include/wx-2.8/wx/caret.h
/include/wx-2.8/wx/checkbox.h
/include/wx-2.8/wx/checklst.h
/include/wx-2.8/wx/chkconf.h
/include/wx-2.8/wx/choicdlg.h
/include/wx-2.8/wx/choice.h
/include/wx-2.8/wx/choicebk.h
/include/wx-2.8/wx/clipbrd.h
/include/wx-2.8/wx/clntdata.h
/include/wx-2.8/wx/clrpicker.h
/include/wx-2.8/wx/cmdline.h
/include/wx-2.8/wx/cmdproc.h
/include/wx-2.8/wx/cmndata.h
/include/wx-2.8/wx/collpane.h
/include/wx-2.8/wx/colordlg.h
/include/wx-2.8/wx/colour.h
/include/wx-2.8/wx/combo.h
/include/wx-2.8/wx/combobox.h
/include/wx-2.8/wx/confbase.h
/include/wx-2.8/wx/config.h
/include/wx-2.8/wx/containr.h
/include/wx-2.8/wx/control.h
/include/wx-2.8/wx/convauto.h
/include/wx-2.8/wx/cpp.h
/include/wx-2.8/wx/cshelp.h
/include/wx-2.8/wx/ctrlsub.h
/include/wx-2.8/wx/cursor.h
/include/wx-2.8/wx/dataobj.h
/include/wx-2.8/wx/dataview.h
/include/wx-2.8/wx/datectrl.h
/include/wx-2.8/wx/dateevt.h
/include/wx-2.8/wx/datetime.h
/include/wx-2.8/wx/datstrm.h
/include/wx-2.8/wx/db.h
/include/wx-2.8/wx/dbgrid.h
/include/wx-2.8/wx/dbkeyg.h
/include/wx-2.8/wx/dbtable.h
/include/wx-2.8/wx/dc.h
/include/wx-2.8/wx/dcbuffer.h
/include/wx-2.8/wx/dcclient.h
/include/wx-2.8/wx/dcgraph.h
/include/wx-2.8/wx/dcmemory.h
/include/wx-2.8/wx/dcmirror.h
/include/wx-2.8/wx/dcprint.h
/include/wx-2.8/wx/dcps.h
/include/wx-2.8/wx/dcscreen.h
/include/wx-2.8/wx/dde.h
/include/wx-2.8/wx/debug.h
/include/wx-2.8/wx/debugrpt.h
/include/wx-2.8/wx/defs.h
/include/wx-2.8/wx/dialog.h
/include/wx-2.8/wx/dialup.h
/include/wx-2.8/wx/dir.h
/include/wx-2.8/wx/dirctrl.h
/include/wx-2.8/wx/dirdlg.h
/include/wx-2.8/wx/display.h
/include/wx-2.8/wx/display_impl.h
/include/wx-2.8/wx/dlimpexp.h
/include/wx-2.8/wx/dnd.h
/include/wx-2.8/wx/docmdi.h
/include/wx-2.8/wx/docview.h
/include/wx-2.8/wx/dragimag.h
/include/wx-2.8/wx/dynarray.h
/include/wx-2.8/wx/dynlib.h
/include/wx-2.8/wx/dynload.h
/include/wx-2.8/wx/effects.h
/include/wx-2.8/wx/encconv.h
/include/wx-2.8/wx/encinfo.h
/include/wx-2.8/wx/event.h
/include/wx-2.8/wx/evtloop.h
/include/wx-2.8/wx/except.h
/include/wx-2.8/wx/fdrepdlg.h
/include/wx-2.8/wx/features.h
/include/wx-2.8/wx/ffile.h
/include/wx-2.8/wx/file.h
/include/wx-2.8/wx/fileconf.h
/include/wx-2.8/wx/filedlg.h
/include/wx-2.8/wx/filefn.h
/include/wx-2.8/wx/filename.h
/include/wx-2.8/wx/filepicker.h
/include/wx-2.8/wx/filesys.h
/include/wx-2.8/wx/fmappriv.h
/include/wx-2.8/wx/font.h
/include/wx-2.8/wx/fontdlg.h
/include/wx-2.8/wx/fontenc.h
/include/wx-2.8/wx/fontenum.h
/include/wx-2.8/wx/fontmap.h
/include/wx-2.8/wx/fontpicker.h
/include/wx-2.8/wx/fontutil.h
/include/wx-2.8/wx/frame.h
/include/wx-2.8/wx/fs_arc.h
/include/wx-2.8/wx/fs_filter.h
/include/wx-2.8/wx/fs_inet.h
/include/wx-2.8/wx/fs_mem.h
/include/wx-2.8/wx/fs_zip.h
/include/wx-2.8/wx/gauge.h
/include/wx-2.8/wx/gbsizer.h
/include/wx-2.8/wx/gdicmn.h
/include/wx-2.8/wx/gdiobj.h
/include/wx-2.8/wx/generic/aboutdlgg.h
/include/wx-2.8/wx/generic/accel.h
/include/wx-2.8/wx/generic/animate.h
/include/wx-2.8/wx/generic/bmpcbox.h
/include/wx-2.8/wx/generic/busyinfo.h
/include/wx-2.8/wx/generic/buttonbar.h
/include/wx-2.8/wx/generic/calctrl.h
/include/wx-2.8/wx/generic/choicdgg.h
/include/wx-2.8/wx/generic/clrpickerg.h
/include/wx-2.8/wx/generic/collpaneg.h
/include/wx-2.8/wx/generic/colrdlgg.h
/include/wx-2.8/wx/generic/combo.h
/include/wx-2.8/wx/generic/dataview.h
/include/wx-2.8/wx/generic/datectrl.h
/include/wx-2.8/wx/generic/dcpsg.h
/include/wx-2.8/wx/generic/dirctrlg.h
/include/wx-2.8/wx/generic/dragimgg.h
/include/wx-2.8/wx/generic/filedlgg.h
/include/wx-2.8/wx/generic/filepickerg.h
/include/wx-2.8/wx/generic/fontdlgg.h
/include/wx-2.8/wx/generic/fontpickerg.h
/include/wx-2.8/wx/generic/grid.h
/include/wx-2.8/wx/generic/gridctrl.h
/include/wx-2.8/wx/generic/gridsel.h
/include/wx-2.8/wx/generic/helpext.h
/include/wx-2.8/wx/generic/laywin.h
/include/wx-2.8/wx/generic/logg.h
/include/wx-2.8/wx/generic/msgdlgg.h
/include/wx-2.8/wx/generic/notebook.h
/include/wx-2.8/wx/generic/numdlgg.h
/include/wx-2.8/wx/generic/panelg.h
/include/wx-2.8/wx/generic/printps.h
/include/wx-2.8/wx/generic/prntdlgg.h
/include/wx-2.8/wx/generic/progdlgg.h
/include/wx-2.8/wx/generic/propdlg.h
/include/wx-2.8/wx/generic/sashwin.h
/include/wx-2.8/wx/generic/scrolwin.h
/include/wx-2.8/wx/generic/spinctlg.h
/include/wx-2.8/wx/generic/splash.h
/include/wx-2.8/wx/generic/splitter.h
/include/wx-2.8/wx/generic/srchctlg.h
/include/wx-2.8/wx/generic/textdlgg.h
/include/wx-2.8/wx/generic/timer.h
/include/wx-2.8/wx/generic/treectlg.h
/include/wx-2.8/wx/generic/wizard.h
/include/wx-2.8/wx/geometry.h
/include/wx-2.8/wx/gifdecod.h
/include/wx-2.8/wx/glcanvas.h
/include/wx-2.8/wx/graphics.h
/include/wx-2.8/wx/grid.h
/include/wx-2.8/wx/gsocket.h
/include/wx-2.8/wx/hash.h
/include/wx-2.8/wx/hashmap.h
/include/wx-2.8/wx/hashset.h
/include/wx-2.8/wx/help.h
/include/wx-2.8/wx/helpbase.h
/include/wx-2.8/wx/helphtml.h
/include/wx-2.8/wx/helpwin.h
/include/wx-2.8/wx/html/forcelnk.h
/include/wx-2.8/wx/html/helpctrl.h
/include/wx-2.8/wx/html/helpdata.h
/include/wx-2.8/wx/html/helpdlg.h
/include/wx-2.8/wx/html/helpfrm.h
/include/wx-2.8/wx/html/helpwnd.h
/include/wx-2.8/wx/html/htmlcell.h
/include/wx-2.8/wx/html/htmldefs.h
/include/wx-2.8/wx/html/htmlfilt.h
/include/wx-2.8/wx/html/htmlpars.h
/include/wx-2.8/wx/html/htmlproc.h
/include/wx-2.8/wx/html/htmltag.h
/include/wx-2.8/wx/html/htmlwin.h
/include/wx-2.8/wx/html/htmprint.h
/include/wx-2.8/wx/html/m_templ.h
/include/wx-2.8/wx/html/winpars.h
/include/wx-2.8/wx/htmllbox.h
/include/wx-2.8/wx/hyperlink.h
/include/wx-2.8/wx/icon.h
/include/wx-2.8/wx/iconbndl.h
/include/wx-2.8/wx/iconloc.h
/include/wx-2.8/wx/imagbmp.h
/include/wx-2.8/wx/image.h
/include/wx-2.8/wx/imaggif.h
/include/wx-2.8/wx/imagiff.h
/include/wx-2.8/wx/imagjpeg.h
/include/wx-2.8/wx/imaglist.h
/include/wx-2.8/wx/imagpcx.h
/include/wx-2.8/wx/imagpng.h
/include/wx-2.8/wx/imagpnm.h
/include/wx-2.8/wx/imagtga.h
/include/wx-2.8/wx/imagtiff.h
/include/wx-2.8/wx/imagxpm.h
/include/wx-2.8/wx/init.h
/include/wx-2.8/wx/intl.h
/include/wx-2.8/wx/iosfwrap.h
/include/wx-2.8/wx/ioswrap.h
/include/wx-2.8/wx/ipc.h
/include/wx-2.8/wx/ipcbase.h
/include/wx-2.8/wx/isql.h
/include/wx-2.8/wx/isqlext.h
/include/wx-2.8/wx/joystick.h
/include/wx-2.8/wx/layout.h
/include/wx-2.8/wx/laywin.h
/include/wx-2.8/wx/link.h
/include/wx-2.8/wx/list.h
/include/wx-2.8/wx/listbase.h
/include/wx-2.8/wx/listbook.h
/include/wx-2.8/wx/listbox.h
/include/wx-2.8/wx/listctrl.h
/include/wx-2.8/wx/listimpl.cpp
/include/wx-2.8/wx/log.h
/include/wx-2.8/wx/longlong.h
/include/wx-2.8/wx/math.h
/include/wx-2.8/wx/matrix.h
/include/wx-2.8/wx/mdi.h
/include/wx-2.8/wx/mediactrl.h
/include/wx-2.8/wx/memconf.h
/include/wx-2.8/wx/memory.h
/include/wx-2.8/wx/memtext.h
/include/wx-2.8/wx/menu.h
/include/wx-2.8/wx/menuitem.h
/include/wx-2.8/wx/metafile.h
/include/wx-2.8/wx/mimetype.h
/include/wx-2.8/wx/minifram.h
/include/wx-2.8/wx/module.h
/include/wx-2.8/wx/msgdlg.h
/include/wx-2.8/wx/msgout.h
/include/wx-2.8/wx/mstream.h
/include/wx-2.8/wx/msw/accel.h
/include/wx-2.8/wx/msw/amd64.manifest
/include/wx-2.8/wx/msw/app.h
/include/wx-2.8/wx/msw/apptbase.h
/include/wx-2.8/wx/msw/apptrait.h
/include/wx-2.8/wx/msw/bitmap.h
/include/wx-2.8/wx/msw/blank.cur
/include/wx-2.8/wx/msw/bmpbuttn.h
/include/wx-2.8/wx/msw/brush.h
/include/wx-2.8/wx/msw/bullseye.cur
/include/wx-2.8/wx/msw/button.h
/include/wx-2.8/wx/msw/caret.h
/include/wx-2.8/wx/msw/cdrom.ico
/include/wx-2.8/wx/msw/checkbox.h
/include/wx-2.8/wx/msw/checklst.h
/include/wx-2.8/wx/msw/child.ico
/include/wx-2.8/wx/msw/chkconf.h
/include/wx-2.8/wx/msw/choice.h
/include/wx-2.8/wx/msw/clipbrd.h
/include/wx-2.8/wx/msw/colordlg.h
/include/wx-2.8/wx/msw/colour.h
/include/wx-2.8/wx/msw/colours.bmp
/include/wx-2.8/wx/msw/combo.h
/include/wx-2.8/wx/msw/combobox.h
/include/wx-2.8/wx/msw/computer.ico
/include/wx-2.8/wx/msw/control.h
/include/wx-2.8/wx/msw/crashrpt.h
/include/wx-2.8/wx/msw/cross.cur
/include/wx-2.8/wx/msw/csquery.bmp
/include/wx-2.8/wx/msw/cursor.h
/include/wx-2.8/wx/msw/datectrl.h
/include/wx-2.8/wx/msw/dc.h
/include/wx-2.8/wx/msw/dcclient.h
/include/wx-2.8/wx/msw/dcmemory.h
/include/wx-2.8/wx/msw/dcprint.h
/include/wx-2.8/wx/msw/dcscreen.h
/include/wx-2.8/wx/msw/dde.h
/include/wx-2.8/wx/msw/debughlp.h
/include/wx-2.8/wx/msw/dialog.h
/include/wx-2.8/wx/msw/dib.h
/include/wx-2.8/wx/msw/dirdlg.h
/include/wx-2.8/wx/msw/dragimag.h
/include/wx-2.8/wx/msw/drive.ico
/include/wx-2.8/wx/msw/enhmeta.h
/include/wx-2.8/wx/msw/evtloop.h
/include/wx-2.8/wx/msw/fdrepdlg.h
/include/wx-2.8/wx/msw/file1.ico
/include/wx-2.8/wx/msw/filedlg.h
/include/wx-2.8/wx/msw/floppy.ico
/include/wx-2.8/wx/msw/folder1.ico
/include/wx-2.8/wx/msw/folder2.ico
/include/wx-2.8/wx/msw/font.h
/include/wx-2.8/wx/msw/fontdlg.h
/include/wx-2.8/wx/msw/frame.h
/include/wx-2.8/wx/msw/gauge95.h
/include/wx-2.8/wx/msw/gccpriv.h
/include/wx-2.8/wx/msw/gdiimage.h
/include/wx-2.8/wx/msw/glcanvas.h
/include/wx-2.8/wx/msw/gsockmsw.h
/include/wx-2.8/wx/msw/hand.cur
/include/wx-2.8/wx/msw/helpbest.h
/include/wx-2.8/wx/msw/helpchm.h
/include/wx-2.8/wx/msw/helpwin.h
/include/wx-2.8/wx/msw/htmlhelp.h
/include/wx-2.8/wx/msw/ia64.manifest
/include/wx-2.8/wx/msw/icon.h
/include/wx-2.8/wx/msw/imaglist.h
/include/wx-2.8/wx/msw/iniconf.h
/include/wx-2.8/wx/msw/joystick.h
/include/wx-2.8/wx/msw/libraries.h
/include/wx-2.8/wx/msw/listbox.h
/include/wx-2.8/wx/msw/listctrl.h
/include/wx-2.8/wx/msw/magnif1.cur
/include/wx-2.8/wx/msw/mdi.h
/include/wx-2.8/wx/msw/mdi.ico
/include/wx-2.8/wx/msw/menu.h
/include/wx-2.8/wx/msw/menuitem.h
/include/wx-2.8/wx/msw/metafile.h
/include/wx-2.8/wx/msw/mimetype.h
/include/wx-2.8/wx/msw/minifram.h
/include/wx-2.8/wx/msw/missing.h
/include/wx-2.8/wx/msw/msgdlg.h
/include/wx-2.8/wx/msw/mslu.h
/include/wx-2.8/wx/msw/msvcrt.h
/include/wx-2.8/wx/msw/notebook.h
/include/wx-2.8/wx/msw/ole/access.h
/include/wx-2.8/wx/msw/ole/activex.h
/include/wx-2.8/wx/msw/ole/automtn.h
/include/wx-2.8/wx/msw/ole/dataform.h
/include/wx-2.8/wx/msw/ole/dataobj.h
/include/wx-2.8/wx/msw/ole/dataobj2.h
/include/wx-2.8/wx/msw/ole/dropsrc.h
/include/wx-2.8/wx/msw/ole/droptgt.h
/include/wx-2.8/wx/msw/ole/oleutils.h
/include/wx-2.8/wx/msw/ole/uuid.h
/include/wx-2.8/wx/msw/palette.h
/include/wx-2.8/wx/msw/pbrush.cur
/include/wx-2.8/wx/msw/pen.h
/include/wx-2.8/wx/msw/pencil.cur
/include/wx-2.8/wx/msw/pntleft.cur
/include/wx-2.8/wx/msw/pntright.cur
/include/wx-2.8/wx/msw/popupwin.h
/include/wx-2.8/wx/msw/printdlg.h
/include/wx-2.8/wx/msw/printwin.h
/include/wx-2.8/wx/msw/private.h
/include/wx-2.8/wx/msw/question.ico
/include/wx-2.8/wx/msw/radiobox.h
/include/wx-2.8/wx/msw/radiobut.h
/include/wx-2.8/wx/msw/rcdefs.h
/include/wx-2.8/wx/msw/regconf.h
/include/wx-2.8/wx/msw/region.h
/include/wx-2.8/wx/msw/registry.h
/include/wx-2.8/wx/msw/removble.ico
/include/wx-2.8/wx/msw/rightarr.cur
/include/wx-2.8/wx/msw/roller.cur
/include/wx-2.8/wx/msw/scrolbar.h
/include/wx-2.8/wx/msw/seh.h
/include/wx-2.8/wx/msw/setup0.h
/include/wx-2.8/wx/msw/slider95.h
/include/wx-2.8/wx/msw/sound.h
/include/wx-2.8/wx/msw/spinbutt.h
/include/wx-2.8/wx/msw/spinctrl.h
/include/wx-2.8/wx/msw/stackwalk.h
/include/wx-2.8/wx/msw/statbmp.h
/include/wx-2.8/wx/msw/statbox.h
/include/wx-2.8/wx/msw/statbr95.h
/include/wx-2.8/wx/msw/statline.h
/include/wx-2.8/wx/msw/stattext.h
/include/wx-2.8/wx/msw/std.ico
/include/wx-2.8/wx/msw/stdpaths.h
/include/wx-2.8/wx/msw/tabctrl.h
/include/wx-2.8/wx/msw/taskbar.h
/include/wx-2.8/wx/msw/tbar95.h
/include/wx-2.8/wx/msw/textctrl.h
/include/wx-2.8/wx/msw/tglbtn.h
/include/wx-2.8/wx/msw/timer.h
/include/wx-2.8/wx/msw/tooltip.h
/include/wx-2.8/wx/msw/toplevel.h
/include/wx-2.8/wx/msw/treectrl.h
/include/wx-2.8/wx/msw/uxtheme.h
/include/wx-2.8/wx/msw/uxthemep.h
/include/wx-2.8/wx/msw/window.h
/include/wx-2.8/wx/msw/winundef.h
/include/wx-2.8/wx/msw/wrapcctl.h
/include/wx-2.8/wx/msw/wrapcdlg.h
/include/wx-2.8/wx/msw/wrapwin.h
/include/wx-2.8/wx/msw/wx.manifest
/include/wx-2.8/wx/msw/wx.rc
/include/wx-2.8/wx/notebook.h
/include/wx-2.8/wx/numdlg.h
/include/wx-2.8/wx/object.h
/include/wx-2.8/wx/odcombo.h
/include/wx-2.8/wx/overlay.h
/include/wx-2.8/wx/ownerdrw.h
/include/wx-2.8/wx/palette.h
/include/wx-2.8/wx/panel.h
/include/wx-2.8/wx/paper.h
/include/wx-2.8/wx/pen.h
/include/wx-2.8/wx/pickerbase.h
/include/wx-2.8/wx/platform.h
/include/wx-2.8/wx/platinfo.h
/include/wx-2.8/wx/popupwin.h
/include/wx-2.8/wx/power.h
/include/wx-2.8/wx/print.h
/include/wx-2.8/wx/printdlg.h
/include/wx-2.8/wx/prntbase.h
/include/wx-2.8/wx/process.h
/include/wx-2.8/wx/progdlg.h
/include/wx-2.8/wx/propdlg.h
/include/wx-2.8/wx/protocol/file.h
/include/wx-2.8/wx/protocol/ftp.h
/include/wx-2.8/wx/protocol/http.h
/include/wx-2.8/wx/protocol/protocol.h
/include/wx-2.8/wx/ptr_scpd.h
/include/wx-2.8/wx/quantize.h
/include/wx-2.8/wx/radiobox.h
/include/wx-2.8/wx/radiobut.h
/include/wx-2.8/wx/rawbmp.h
/include/wx-2.8/wx/recguard.h
/include/wx-2.8/wx/regex.h
/include/wx-2.8/wx/region.h
/include/wx-2.8/wx/renderer.h
/include/wx-2.8/wx/richtext/richtextbuffer.h
/include/wx-2.8/wx/richtext/richtextctrl.h
/include/wx-2.8/wx/richtext/richtextformatdlg.h
/include/wx-2.8/wx/richtext/richtexthtml.h
/include/wx-2.8/wx/richtext/richtextprint.h
/include/wx-2.8/wx/richtext/richtextstyledlg.h
/include/wx-2.8/wx/richtext/richtextstyles.h
/include/wx-2.8/wx/richtext/richtextsymboldlg.h
/include/wx-2.8/wx/richtext/richtextxml.h
/include/wx-2.8/wx/sashwin.h
/include/wx-2.8/wx/sckaddr.h
/include/wx-2.8/wx/sckipc.h
/include/wx-2.8/wx/sckstrm.h
/include/wx-2.8/wx/scopeguard.h
/include/wx-2.8/wx/scrolbar.h
/include/wx-2.8/wx/scrolwin.h
/include/wx-2.8/wx/selstore.h
/include/wx-2.8/wx/settings.h
/include/wx-2.8/wx/sizer.h
/include/wx-2.8/wx/slider.h
/include/wx-2.8/wx/snglinst.h
/include/wx-2.8/wx/socket.h
/include/wx-2.8/wx/sound.h
/include/wx-2.8/wx/spinbutt.h
/include/wx-2.8/wx/spinctrl.h
/include/wx-2.8/wx/splash.h
/include/wx-2.8/wx/splitter.h
/include/wx-2.8/wx/srchctrl.h
/include/wx-2.8/wx/sstream.h
/include/wx-2.8/wx/stack.h
/include/wx-2.8/wx/stackwalk.h
/include/wx-2.8/wx/statbmp.h
/include/wx-2.8/wx/statbox.h
/include/wx-2.8/wx/statline.h
/include/wx-2.8/wx/stattext.h
/include/wx-2.8/wx/statusbr.h
/include/wx-2.8/wx/stdpaths.h
/include/wx-2.8/wx/stockitem.h
/include/wx-2.8/wx/stopwatch.h
/include/wx-2.8/wx/strconv.h
/include/wx-2.8/wx/stream.h
/include/wx-2.8/wx/string.h
/include/wx-2.8/wx/sysopt.h
/include/wx-2.8/wx/tab.h
/include/wx-2.8/wx/tabctrl.h
/include/wx-2.8/wx/tarstrm.h
/include/wx-2.8/wx/taskbar.h
/include/wx-2.8/wx/tbarbase.h
/include/wx-2.8/wx/textbuf.h
/include/wx-2.8/wx/textctrl.h
/include/wx-2.8/wx/textdlg.h
/include/wx-2.8/wx/textfile.h
/include/wx-2.8/wx/tglbtn.h
/include/wx-2.8/wx/thread.h
/include/wx-2.8/wx/thrimpl.cpp
/include/wx-2.8/wx/timer.h
/include/wx-2.8/wx/tipdlg.h
/include/wx-2.8/wx/tipwin.h
/include/wx-2.8/wx/tokenzr.h
/include/wx-2.8/wx/toolbar.h
/include/wx-2.8/wx/toolbook.h
/include/wx-2.8/wx/tooltip.h
/include/wx-2.8/wx/toplevel.h
/include/wx-2.8/wx/treebase.h
/include/wx-2.8/wx/treebook.h
/include/wx-2.8/wx/treectrl.h
/include/wx-2.8/wx/txtstrm.h
/include/wx-2.8/wx/types.h
/include/wx-2.8/wx/uri.h
/include/wx-2.8/wx/url.h
/include/wx-2.8/wx/utils.h
/include/wx-2.8/wx/valgen.h
/include/wx-2.8/wx/validate.h
/include/wx-2.8/wx/valtext.h
/include/wx-2.8/wx/variant.h
/include/wx-2.8/wx/vector.h
/include/wx-2.8/wx/version.h
/include/wx-2.8/wx/vidmode.h
/include/wx-2.8/wx/vlbox.h
/include/wx-2.8/wx/vms_x_fix.h
/include/wx-2.8/wx/volume.h
/include/wx-2.8/wx/vscroll.h
/include/wx-2.8/wx/wave.h
/include/wx-2.8/wx/wfstream.h
/include/wx-2.8/wx/window.h
/include/wx-2.8/wx/wizard.h
/include/wx-2.8/wx/wupdlock.h
/include/wx-2.8/wx/wx.h
/include/wx-2.8/wx/wxchar.h
/include/wx-2.8/wx/wxhtml.h
/include/wx-2.8/wx/wxprec.h
/include/wx-2.8/wx/xml/xml.h
/include/wx-2.8/wx/xpmdecod.h
/include/wx-2.8/wx/xpmhand.h
/include/wx-2.8/wx/xrc/xh_all.h
/include/wx-2.8/wx/xrc/xh_animatctrl.h
/include/wx-2.8/wx/xrc/xh_bmp.h
/include/wx-2.8/wx/xrc/xh_bmpbt.h
/include/wx-2.8/wx/xrc/xh_bmpcbox.h
/include/wx-2.8/wx/xrc/xh_bttn.h
/include/wx-2.8/wx/xrc/xh_cald.h
/include/wx-2.8/wx/xrc/xh_chckb.h
/include/wx-2.8/wx/xrc/xh_chckl.h
/include/wx-2.8/wx/xrc/xh_choic.h
/include/wx-2.8/wx/xrc/xh_choicbk.h
/include/wx-2.8/wx/xrc/xh_clrpicker.h
/include/wx-2.8/wx/xrc/xh_collpane.h
/include/wx-2.8/wx/xrc/xh_combo.h
/include/wx-2.8/wx/xrc/xh_datectrl.h
/include/wx-2.8/wx/xrc/xh_dirpicker.h
/include/wx-2.8/wx/xrc/xh_dlg.h
/include/wx-2.8/wx/xrc/xh_filepicker.h
/include/wx-2.8/wx/xrc/xh_fontpicker.h
/include/wx-2.8/wx/xrc/xh_frame.h
/include/wx-2.8/wx/xrc/xh_gauge.h
/include/wx-2.8/wx/xrc/xh_gdctl.h
/include/wx-2.8/wx/xrc/xh_grid.h
/include/wx-2.8/wx/xrc/xh_html.h
/include/wx-2.8/wx/xrc/xh_htmllbox.h
/include/wx-2.8/wx/xrc/xh_hyperlink.h
/include/wx-2.8/wx/xrc/xh_listb.h
/include/wx-2.8/wx/xrc/xh_listbk.h
/include/wx-2.8/wx/xrc/xh_listc.h
/include/wx-2.8/wx/xrc/xh_mdi.h
/include/wx-2.8/wx/xrc/xh_menu.h
/include/wx-2.8/wx/xrc/xh_notbk.h
/include/wx-2.8/wx/xrc/xh_odcombo.h
/include/wx-2.8/wx/xrc/xh_panel.h
/include/wx-2.8/wx/xrc/xh_propdlg.h
/include/wx-2.8/wx/xrc/xh_radbt.h
/include/wx-2.8/wx/xrc/xh_radbx.h
/include/wx-2.8/wx/xrc/xh_scrol.h
/include/wx-2.8/wx/xrc/xh_scwin.h
/include/wx-2.8/wx/xrc/xh_sizer.h
/include/wx-2.8/wx/xrc/xh_slidr.h
/include/wx-2.8/wx/xrc/xh_spin.h
/include/wx-2.8/wx/xrc/xh_split.h
/include/wx-2.8/wx/xrc/xh_statbar.h
/include/wx-2.8/wx/xrc/xh_stbmp.h
/include/wx-2.8/wx/xrc/xh_stbox.h
/include/wx-2.8/wx/xrc/xh_stlin.h
/include/wx-2.8/wx/xrc/xh_sttxt.h
/include/wx-2.8/wx/xrc/xh_text.h
/include/wx-2.8/wx/xrc/xh_tglbtn.h
/include/wx-2.8/wx/xrc/xh_toolb.h
/include/wx-2.8/wx/xrc/xh_tree.h
/include/wx-2.8/wx/xrc/xh_treebk.h
/include/wx-2.8/wx/xrc/xh_unkwn.h
/include/wx-2.8/wx/xrc/xh_wizrd.h
/include/wx-2.8/wx/xrc/xmlres.h
/include/wx-2.8/wx/xti.h
/include/wx-2.8/wx/xtistrm.h
/include/wx-2.8/wx/xtixml.h
/include/wx-2.8/wx/zipstrm.h
/include/wx-2.8/wx/zstream.h
/lib/libwx_mswu-2.8.a
/lib/libwxjpeg-2.8.a
/lib/libwxpng-2.8.a
/lib/libwxregexu-2.8.a
/lib/libwxtiff-2.8.a
/lib/wx/config/msw-unicode-release-static-2.8
/lib/wx/include/msw-unicode-release-static-2.8/wx/msw/rcdefs.h
/lib/wx/include/msw-unicode-release-static-2.8/wx/setup.h
/share/aclocal/wxwin.m4
/share/bakefile/presets/wx.bkl
/share/bakefile/presets/wx_unix.bkl
/share/bakefile/presets/wx_win32.bkl

Wednesday, July 1, 2009

MinGW/Cygwin Status Report

This is an on-going report of what I've compiled with MinGW and Cygwin so far. Also listed is what I plan to compile in the future.


What I've compiled with MinGW or Cygwin



  • ATK
  • Bzip2
  • Cairo
  • FontConfig
  • Freetype
  • Gettext
  • GNUTLS
  • GTK+
  • GTK-gnutella
  • JPEG
  • LAME
  • LibCDIO
  • LibDTS
  • Libiconv
  • LibOGG
  • LibPNG
  • LibReGIF
  • LibTIFF
  • LibVorbis
  • LibXML2
  • Live555
  • LZO
  • Mencoder
  • MPlayer
  • Pango
  • PixMan
  • Speex
  • Theora
  • Unzip
  • x264
  • XviD
  • Zlib


What I plan to build with MinGW or Cygwin



  • AbiWord
  • aMule
  • Aria2
  • AviDemux
  • Bash
  • Cdrkit
  • EvilVTE
  • FAAC
  • Fileroller
  • Firefox
  • Gimp
  • Glib
  • GnuCash
  • GnuMeric
  • GPAC
  • Grip
  • ImHangul
  • Inkscape
  • LxTerminal
  • Mutella
  • OGMRip
  • OpenOffice.org
  • Pidgin
  • Pkg-config
  • Sakura
  • Scribus
  • Seamonkey
  • SSH
  • SMPlayer
  • SongBird
  • TightVNC
  • TurboCash
  • VietKey
  • VNC4Server
  • Xarchiver
  • XChat
  • Xfe File Manager
  • Xming

Sunday, June 28, 2009

MinGW: Compiling Zlib

Zlib is an essential compression library that's required by most open-source software. Download the zlib source and unpack it with unzip or 7zip. Then, compile Zlib like this:


make -f win32/Makefile.gcc

Manually copy the files as follows:


cp -iv zlib1.dll /mingw/bin
cp -iv zconf.h zlib.h /mingw/include
cp -iv libz.a libz.dll.a /mingw/lib




Building 64-bit zlib


Install MinGW64 (as shown in this post). Edit win32/Makefile.gcc so it contains the following lines.



CC=x86_64-w64-mingw32-gcc
RC=x86_64-w64-mingw32-windres


Run the following command to compile 64-bit zlib.


make -f win32/Makefile.gcc


Then, install the files.


make -f win32/Makefile.gcc install BINARY_PATH=/mingw/bin INCLUDE_PATH=/mingw/include LIBRARY_PATH=/mingw/lib SHARED_MODE=1


Importing Official Zlib Build


Normally, you don't have to compile zlib yourself as the official precompiled zlib1.dll is distributed from zlib.net. For convenience, we can just use the precompiled package zlib124-dll.zip from zlib.net. Unpack zlib124-dll.zip to an empty folder. Copy the files to the /mingw tree as follows:


/mingw/bin/zlib1.dll

/mingw/include/zconf.h

/mingw/include/zlib.h

/mingw/lib/zdll.exp

/mingw/lib/zdll.lib

/mingw/lib/zlib.def

To import zlib.dll, we have to create zlib.def.


pexports -h /mingw/include/zlib.h /mingw/bin/zlib1.dll | tr -d '@[:digit:]$' > /mingw/lib/zlib.def

Change to /mingw/lib and create the import library libz.dll.a like this:


cd /mingw/lib
dlltool --def /mingw/lib/zlib.def --dllname zlib1.dll --output-lib /mingw/lib/libz.dll.a


Cross-compile Zlib from Linux


This section describes the steps to cross-compile Zlib for Window from inside Linux. First, install the mingw32-runtime, mingw32-binutils and mingw packages. Create a mingw tree at /opt/mingw:



mkdir /opt/mingw
mkdir /opt/mingw/bin
mkdir /opt/mingw/include
mkdir /opt/mingw/lib


Then, set up the following environment variables:



AR="/usr/bin/i586-mingw32msvc-ar rc"
CC=/usr/bin/i586-mingw32msvc-gcc
CPP=/usr/bin/i586-mingw32msvc-cpp
CPPFLAGS="-I/usr/i586-mingw32msvc/include -I/opt/mingw/include"
CXX=/usr/bin/i586-mingw32msvc-g++
LDFLAGS="-L/usr/i586-mingw32msvc/lib -L/opt/mingw/lib"
PATH=/usr/i586-mingw32msvc/bin:$PATH
RANLIB=/usr/bin/i586-mingw32msvc-ranlib
RC=/usr/bin/i586-mingw32msvc-windres
WINDRES=/usr/bin/i586-mingw32msvc-windres

export AR CC CPP CPPFLAGS CXX LDFLAGS PATH RANLIB RC WINDRES


Then, run the commands below:



/configure --prefix=/opt/mingw
make
make install


At last, create zlib1.dll:



/usr/bin/i586-mingw32msvc-gcc -shared -o /opt/mingw/bin/zlib1.dll -Wl,--out-implib=/opt/mingw/lib/libz.dll.a [!em]*.o

Friday, June 26, 2009

Cygwin GTK+ Developer Libraries

The following packages are provided by Cygwin for developing and porting GTK+ applications:




  • Devel section
    1. gnutls-devel
    2. gtk2-x11-devel
    3. libfreetype-devel
    4. libgcrypt-devel
    5. libiconv
    6. libjpeg-devel
    7. libpng12-devel
    8. libtasn1-devel
    9. libxml2-devel
    10. pango-devel
    11. zlib-devel
  • GNOME section
    1. atk
    2. atk-devel
    3. libxml2


  • Libs section
    1. glib2
    2. glib2-devel
    3. gtk2-x11
    4. gtk2-x11-runtime
    5. libcharset1
    6. libexpat1
    7. libexpat1-devel
    8. libfontconfig-devel
    9. libfontconfig1
    10. libfreetype6
    11. libgcrypt11
    12. libgnutls26
    13. libgpg-error
    14. libjpeg62
    15. libpng12
    16. libtasn1_3
    17. pango
    18. pango-runtime


  • Frankly, I don't recommend these packages because Cygwin GTK+ packages depend on a running X server. Instead, I recommend building GTK+ manually without X11 dependency.

    Monday, June 15, 2009

    Packaging GTK+ 2 Development Headers

    After I successfully compiled GTK+ 2.16.2 for Windows, I thought it's wise to create an archive of development headers and static libraries for GTK+ 2 and its dependencies. This way I can just copy the archive to another computer or Linux without going through the tedious compilation again. This will save me time and efforts. So I made an archive with the following contents:


    bin/asprintf.dll
    bin/envsubst.exe
    bin/freetype-config
    bin/gdk-pixbuf-csource.exe
    bin/gettext.exe
    bin/gettext.sh
    bin/glib-genmarshal.exe
    bin/glib-gettextize
    bin/glib-mkenums
    bin/gobject-query.exe
    bin/gtk-builder-convert
    bin/gtk-demo.exe
    bin/gtk-update-icon-cache.exe
    bin/libgettextlib-0-17.dll
    bin/libgettextsrc-0-17.dll
    bin/libpng-config
    bin/libpng12-config
    bin/msgfmt.exe
    bin/msgmerge.exe
    bin/ngettext.exe
    bin/pango-view.exe
    bin/pkg-config.exe
    bin/xgettext.exe
    bin/xml2-config
    include/atk-1.0/atk/atk-enum-types.h
    include/atk-1.0/atk/atk.h
    include/atk-1.0/atk/atkaction.h
    include/atk-1.0/atk/atkcomponent.h
    include/atk-1.0/atk/atkdocument.h
    include/atk-1.0/atk/atkeditabletext.h
    include/atk-1.0/atk/atkgobjectaccessible.h
    include/atk-1.0/atk/atkhyperlink.h
    include/atk-1.0/atk/atkhyperlinkimpl.h
    include/atk-1.0/atk/atkhypertext.h
    include/atk-1.0/atk/atkimage.h
    include/atk-1.0/atk/atkmisc.h
    include/atk-1.0/atk/atknoopobject.h
    include/atk-1.0/atk/atknoopobjectfactory.h
    include/atk-1.0/atk/atkobject.h
    include/atk-1.0/atk/atkobjectfactory.h
    include/atk-1.0/atk/atkregistry.h
    include/atk-1.0/atk/atkrelation.h
    include/atk-1.0/atk/atkrelationset.h
    include/atk-1.0/atk/atkrelationtype.h
    include/atk-1.0/atk/atkselection.h
    include/atk-1.0/atk/atkstate.h
    include/atk-1.0/atk/atkstateset.h
    include/atk-1.0/atk/atkstreamablecontent.h
    include/atk-1.0/atk/atktable.h
    include/atk-1.0/atk/atktext.h
    include/atk-1.0/atk/atkutil.h
    include/atk-1.0/atk/atkvalue.h
    include/autosprintf.h
    include/cairo/cairo-deprecated.h
    include/cairo/cairo-features.h
    include/cairo/cairo-ft.h
    include/cairo/cairo-pdf.h
    include/cairo/cairo-ps.h
    include/cairo/cairo-svg.h
    include/cairo/cairo-version.h
    include/cairo/cairo-win32.h
    include/cairo/cairo.h
    include/expat.h
    include/expat_external.h
    include/fontconfig/fcfreetype.h
    include/fontconfig/fcprivate.h
    include/fontconfig/fontconfig.h
    include/freetype2/freetype/config/ftconfig.h
    include/freetype2/freetype/config/ftheader.h
    include/freetype2/freetype/config/ftmodule.h
    include/freetype2/freetype/config/ftoption.h
    include/freetype2/freetype/config/ftstdlib.h
    include/freetype2/freetype/freetype.h
    include/freetype2/freetype/ftadvanc.h
    include/freetype2/freetype/ftbbox.h
    include/freetype2/freetype/ftbdf.h
    include/freetype2/freetype/ftbitmap.h
    include/freetype2/freetype/ftcache.h
    include/freetype2/freetype/ftchapters.h
    include/freetype2/freetype/ftcid.h
    include/freetype2/freetype/fterrdef.h
    include/freetype2/freetype/fterrors.h
    include/freetype2/freetype/ftgasp.h
    include/freetype2/freetype/ftglyph.h
    include/freetype2/freetype/ftgxval.h
    include/freetype2/freetype/ftgzip.h
    include/freetype2/freetype/ftimage.h
    include/freetype2/freetype/ftincrem.h
    include/freetype2/freetype/ftlcdfil.h
    include/freetype2/freetype/ftlist.h
    include/freetype2/freetype/ftlzw.h
    include/freetype2/freetype/ftmac.h
    include/freetype2/freetype/ftmm.h
    include/freetype2/freetype/ftmodapi.h
    include/freetype2/freetype/ftmoderr.h
    include/freetype2/freetype/ftotval.h
    include/freetype2/freetype/ftoutln.h
    include/freetype2/freetype/ftpfr.h
    include/freetype2/freetype/ftrender.h
    include/freetype2/freetype/ftsizes.h
    include/freetype2/freetype/ftsnames.h
    include/freetype2/freetype/ftstroke.h
    include/freetype2/freetype/ftsynth.h
    include/freetype2/freetype/ftsystem.h
    include/freetype2/freetype/fttrigon.h
    include/freetype2/freetype/fttypes.h
    include/freetype2/freetype/ftwinfnt.h
    include/freetype2/freetype/ftxf86.h
    include/freetype2/freetype/t1tables.h
    include/freetype2/freetype/ttnameid.h
    include/freetype2/freetype/tttables.h
    include/freetype2/freetype/tttags.h
    include/freetype2/freetype/ttunpat.h
    include/ft2build.h
    include/gail-1.0/gail/gailwidget.h
    include/gail-1.0/libgail-util/gail-util.h
    include/gail-1.0/libgail-util/gailmisc.h
    include/gail-1.0/libgail-util/gailtextutil.h
    include/gettext-po.h
    include/glib-2.0/gio/gappinfo.h
    include/glib-2.0/gio/gasyncresult.h
    include/glib-2.0/gio/gbufferedinputstream.h
    include/glib-2.0/gio/gbufferedoutputstream.h
    include/glib-2.0/gio/gcancellable.h
    include/glib-2.0/gio/gcontenttype.h
    include/glib-2.0/gio/gdatainputstream.h
    include/glib-2.0/gio/gdataoutputstream.h
    include/glib-2.0/gio/gdrive.h
    include/glib-2.0/gio/gemblem.h
    include/glib-2.0/gio/gemblemedicon.h
    include/glib-2.0/gio/gfile.h
    include/glib-2.0/gio/gfileattribute.h
    include/glib-2.0/gio/gfileenumerator.h
    include/glib-2.0/gio/gfileicon.h
    include/glib-2.0/gio/gfileinfo.h
    include/glib-2.0/gio/gfileinputstream.h
    include/glib-2.0/gio/gfilemonitor.h
    include/glib-2.0/gio/gfilenamecompleter.h
    include/glib-2.0/gio/gfileoutputstream.h
    include/glib-2.0/gio/gfilterinputstream.h
    include/glib-2.0/gio/gfilteroutputstream.h
    include/glib-2.0/gio/gicon.h
    include/glib-2.0/gio/ginputstream.h
    include/glib-2.0/gio/gio.h
    include/glib-2.0/gio/gioenums.h
    include/glib-2.0/gio/gioenumtypes.h
    include/glib-2.0/gio/gioerror.h
    include/glib-2.0/gio/giomodule.h
    include/glib-2.0/gio/gioscheduler.h
    include/glib-2.0/gio/giotypes.h
    include/glib-2.0/gio/gloadableicon.h
    include/glib-2.0/gio/gmemoryinputstream.h
    include/glib-2.0/gio/gmemoryoutputstream.h
    include/glib-2.0/gio/gmount.h
    include/glib-2.0/gio/gmountoperation.h
    include/glib-2.0/gio/gnativevolumemonitor.h
    include/glib-2.0/gio/goutputstream.h
    include/glib-2.0/gio/gseekable.h
    include/glib-2.0/gio/gsimpleasyncresult.h
    include/glib-2.0/gio/gthemedicon.h
    include/glib-2.0/gio/gvfs.h
    include/glib-2.0/gio/gvolume.h
    include/glib-2.0/gio/gvolumemonitor.h
    include/glib-2.0/glib-object.h
    include/glib-2.0/glib.h
    include/glib-2.0/glib/galloca.h
    include/glib-2.0/glib/garray.h
    include/glib-2.0/glib/gasyncqueue.h
    include/glib-2.0/glib/gatomic.h
    include/glib-2.0/glib/gbacktrace.h
    include/glib-2.0/glib/gbase64.h
    include/glib-2.0/glib/gbookmarkfile.h
    include/glib-2.0/glib/gcache.h
    include/glib-2.0/glib/gchecksum.h
    include/glib-2.0/glib/gcompletion.h
    include/glib-2.0/glib/gconvert.h
    include/glib-2.0/glib/gdataset.h
    include/glib-2.0/glib/gdate.h
    include/glib-2.0/glib/gdir.h
    include/glib-2.0/glib/gerror.h
    include/glib-2.0/glib/gfileutils.h
    include/glib-2.0/glib/ghash.h
    include/glib-2.0/glib/ghook.h
    include/glib-2.0/glib/gi18n-lib.h
    include/glib-2.0/glib/gi18n.h
    include/glib-2.0/glib/giochannel.h
    include/glib-2.0/glib/gkeyfile.h
    include/glib-2.0/glib/glist.h
    include/glib-2.0/glib/gmacros.h
    include/glib-2.0/glib/gmain.h
    include/glib-2.0/glib/gmappedfile.h
    include/glib-2.0/glib/gmarkup.h
    include/glib-2.0/glib/gmem.h
    include/glib-2.0/glib/gmessages.h
    include/glib-2.0/glib/gnode.h
    include/glib-2.0/glib/goption.h
    include/glib-2.0/glib/gpattern.h
    include/glib-2.0/glib/gpoll.h
    include/glib-2.0/glib/gprimes.h
    include/glib-2.0/glib/gprintf.h
    include/glib-2.0/glib/gqsort.h
    include/glib-2.0/glib/gquark.h
    include/glib-2.0/glib/gqueue.h
    include/glib-2.0/glib/grand.h
    include/glib-2.0/glib/gregex.h
    include/glib-2.0/glib/grel.h
    include/glib-2.0/glib/gscanner.h
    include/glib-2.0/glib/gsequence.h
    include/glib-2.0/glib/gshell.h
    include/glib-2.0/glib/gslice.h
    include/glib-2.0/glib/gslist.h
    include/glib-2.0/glib/gspawn.h
    include/glib-2.0/glib/gstdio.h
    include/glib-2.0/glib/gstrfuncs.h
    include/glib-2.0/glib/gstring.h
    include/glib-2.0/glib/gtestutils.h
    include/glib-2.0/glib/gthread.h
    include/glib-2.0/glib/gthreadpool.h
    include/glib-2.0/glib/gtimer.h
    include/glib-2.0/glib/gtree.h
    include/glib-2.0/glib/gtypes.h
    include/glib-2.0/glib/gunicode.h
    include/glib-2.0/glib/gurifuncs.h
    include/glib-2.0/glib/gutils.h
    include/glib-2.0/glib/gwin32.h
    include/glib-2.0/gmodule.h
    include/glib-2.0/gobject/gboxed.h
    include/glib-2.0/gobject/gclosure.h
    include/glib-2.0/gobject/genums.h
    include/glib-2.0/gobject/gmarshal.h
    include/glib-2.0/gobject/gobject.h
    include/glib-2.0/gobject/gobjectnotifyqueue.c
    include/glib-2.0/gobject/gparam.h
    include/glib-2.0/gobject/gparamspecs.h
    include/glib-2.0/gobject/gsignal.h
    include/glib-2.0/gobject/gsourceclosure.h
    include/glib-2.0/gobject/gtype.h
    include/glib-2.0/gobject/gtypemodule.h
    include/glib-2.0/gobject/gtypeplugin.h
    include/glib-2.0/gobject/gvalue.h
    include/glib-2.0/gobject/gvaluearray.h
    include/glib-2.0/gobject/gvaluecollector.h
    include/glib-2.0/gobject/gvaluetypes.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-core.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-marshal.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-transform.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h
    include/gtk-2.0/gdk-pixbuf/gdk-pixdata.h
    include/gtk-2.0/gdk/gdk.h
    include/gtk-2.0/gdk/gdkapplaunchcontext.h
    include/gtk-2.0/gdk/gdkcairo.h
    include/gtk-2.0/gdk/gdkcolor.h
    include/gtk-2.0/gdk/gdkcursor.h
    include/gtk-2.0/gdk/gdkdisplay.h
    include/gtk-2.0/gdk/gdkdisplaymanager.h
    include/gtk-2.0/gdk/gdkdnd.h
    include/gtk-2.0/gdk/gdkdrawable.h
    include/gtk-2.0/gdk/gdkenumtypes.h
    include/gtk-2.0/gdk/gdkevents.h
    include/gtk-2.0/gdk/gdkfont.h
    include/gtk-2.0/gdk/gdkgc.h
    include/gtk-2.0/gdk/gdki18n.h
    include/gtk-2.0/gdk/gdkimage.h
    include/gtk-2.0/gdk/gdkinput.h
    include/gtk-2.0/gdk/gdkkeys.h
    include/gtk-2.0/gdk/gdkkeysyms.h
    include/gtk-2.0/gdk/gdkpango.h
    include/gtk-2.0/gdk/gdkpixbuf.h
    include/gtk-2.0/gdk/gdkpixmap.h
    include/gtk-2.0/gdk/gdkprivate.h
    include/gtk-2.0/gdk/gdkproperty.h
    include/gtk-2.0/gdk/gdkregion.h
    include/gtk-2.0/gdk/gdkrgb.h
    include/gtk-2.0/gdk/gdkscreen.h
    include/gtk-2.0/gdk/gdkselection.h
    include/gtk-2.0/gdk/gdkspawn.h
    include/gtk-2.0/gdk/gdktestutils.h
    include/gtk-2.0/gdk/gdktypes.h
    include/gtk-2.0/gdk/gdkvisual.h
    include/gtk-2.0/gdk/gdkwin32.h
    include/gtk-2.0/gdk/gdkwindow.h
    include/gtk-2.0/gtk/gtk.h
    include/gtk-2.0/gtk/gtkaboutdialog.h
    include/gtk-2.0/gtk/gtkaccelgroup.h
    include/gtk-2.0/gtk/gtkaccellabel.h
    include/gtk-2.0/gtk/gtkaccelmap.h
    include/gtk-2.0/gtk/gtkaccessible.h
    include/gtk-2.0/gtk/gtkaction.h
    include/gtk-2.0/gtk/gtkactiongroup.h
    include/gtk-2.0/gtk/gtkactivatable.h
    include/gtk-2.0/gtk/gtkadjustment.h
    include/gtk-2.0/gtk/gtkalignment.h
    include/gtk-2.0/gtk/gtkarrow.h
    include/gtk-2.0/gtk/gtkaspectframe.h
    include/gtk-2.0/gtk/gtkassistant.h
    include/gtk-2.0/gtk/gtkbbox.h
    include/gtk-2.0/gtk/gtkbin.h
    include/gtk-2.0/gtk/gtkbindings.h
    include/gtk-2.0/gtk/gtkbox.h
    include/gtk-2.0/gtk/gtkbuildable.h
    include/gtk-2.0/gtk/gtkbuilder.h
    include/gtk-2.0/gtk/gtkbutton.h
    include/gtk-2.0/gtk/gtkcalendar.h
    include/gtk-2.0/gtk/gtkcelleditable.h
    include/gtk-2.0/gtk/gtkcelllayout.h
    include/gtk-2.0/gtk/gtkcellrenderer.h
    include/gtk-2.0/gtk/gtkcellrendereraccel.h
    include/gtk-2.0/gtk/gtkcellrenderercombo.h
    include/gtk-2.0/gtk/gtkcellrendererpixbuf.h
    include/gtk-2.0/gtk/gtkcellrendererprogress.h
    include/gtk-2.0/gtk/gtkcellrendererspin.h
    include/gtk-2.0/gtk/gtkcellrenderertext.h
    include/gtk-2.0/gtk/gtkcellrenderertoggle.h
    include/gtk-2.0/gtk/gtkcellview.h
    include/gtk-2.0/gtk/gtkcheckbutton.h
    include/gtk-2.0/gtk/gtkcheckmenuitem.h
    include/gtk-2.0/gtk/gtkclipboard.h
    include/gtk-2.0/gtk/gtkclist.h
    include/gtk-2.0/gtk/gtkcolorbutton.h
    include/gtk-2.0/gtk/gtkcolorsel.h
    include/gtk-2.0/gtk/gtkcolorseldialog.h
    include/gtk-2.0/gtk/gtkcombo.h
    include/gtk-2.0/gtk/gtkcombobox.h
    include/gtk-2.0/gtk/gtkcomboboxentry.h
    include/gtk-2.0/gtk/gtkcontainer.h
    include/gtk-2.0/gtk/gtkctree.h
    include/gtk-2.0/gtk/gtkcurve.h
    include/gtk-2.0/gtk/gtkdebug.h
    include/gtk-2.0/gtk/gtkdialog.h
    include/gtk-2.0/gtk/gtkdnd.h
    include/gtk-2.0/gtk/gtkdrawingarea.h
    include/gtk-2.0/gtk/gtkeditable.h
    include/gtk-2.0/gtk/gtkentry.h
    include/gtk-2.0/gtk/gtkentrycompletion.h
    include/gtk-2.0/gtk/gtkenums.h
    include/gtk-2.0/gtk/gtkeventbox.h
    include/gtk-2.0/gtk/gtkexpander.h
    include/gtk-2.0/gtk/gtkfilechooser.h
    include/gtk-2.0/gtk/gtkfilechooserbutton.h
    include/gtk-2.0/gtk/gtkfilechooserdialog.h
    include/gtk-2.0/gtk/gtkfilechooserwidget.h
    include/gtk-2.0/gtk/gtkfilefilter.h
    include/gtk-2.0/gtk/gtkfilesel.h
    include/gtk-2.0/gtk/gtkfixed.h
    include/gtk-2.0/gtk/gtkfontbutton.h
    include/gtk-2.0/gtk/gtkfontsel.h
    include/gtk-2.0/gtk/gtkframe.h
    include/gtk-2.0/gtk/gtkgamma.h
    include/gtk-2.0/gtk/gtkgc.h
    include/gtk-2.0/gtk/gtkhandlebox.h
    include/gtk-2.0/gtk/gtkhbbox.h
    include/gtk-2.0/gtk/gtkhbox.h
    include/gtk-2.0/gtk/gtkhpaned.h
    include/gtk-2.0/gtk/gtkhruler.h
    include/gtk-2.0/gtk/gtkhscale.h
    include/gtk-2.0/gtk/gtkhscrollbar.h
    include/gtk-2.0/gtk/gtkhseparator.h
    include/gtk-2.0/gtk/gtkhsv.h
    include/gtk-2.0/gtk/gtkiconfactory.h
    include/gtk-2.0/gtk/gtkicontheme.h
    include/gtk-2.0/gtk/gtkiconview.h
    include/gtk-2.0/gtk/gtkimage.h
    include/gtk-2.0/gtk/gtkimagemenuitem.h
    include/gtk-2.0/gtk/gtkimcontext.h
    include/gtk-2.0/gtk/gtkimcontextsimple.h
    include/gtk-2.0/gtk/gtkimmodule.h
    include/gtk-2.0/gtk/gtkimmulticontext.h
    include/gtk-2.0/gtk/gtkinputdialog.h
    include/gtk-2.0/gtk/gtkinvisible.h
    include/gtk-2.0/gtk/gtkitem.h
    include/gtk-2.0/gtk/gtkitemfactory.h
    include/gtk-2.0/gtk/gtklabel.h
    include/gtk-2.0/gtk/gtklayout.h
    include/gtk-2.0/gtk/gtklinkbutton.h
    include/gtk-2.0/gtk/gtklist.h
    include/gtk-2.0/gtk/gtklistitem.h
    include/gtk-2.0/gtk/gtkliststore.h
    include/gtk-2.0/gtk/gtkmain.h
    include/gtk-2.0/gtk/gtkmarshal.h
    include/gtk-2.0/gtk/gtkmenu.h
    include/gtk-2.0/gtk/gtkmenubar.h
    include/gtk-2.0/gtk/gtkmenuitem.h
    include/gtk-2.0/gtk/gtkmenushell.h
    include/gtk-2.0/gtk/gtkmenutoolbutton.h
    include/gtk-2.0/gtk/gtkmessagedialog.h
    include/gtk-2.0/gtk/gtkmisc.h
    include/gtk-2.0/gtk/gtkmodules.h
    include/gtk-2.0/gtk/gtkmountoperation.h
    include/gtk-2.0/gtk/gtknotebook.h
    include/gtk-2.0/gtk/gtkobject.h
    include/gtk-2.0/gtk/gtkoldeditable.h
    include/gtk-2.0/gtk/gtkoptionmenu.h
    include/gtk-2.0/gtk/gtkorientable.h
    include/gtk-2.0/gtk/gtkpagesetup.h
    include/gtk-2.0/gtk/gtkpaned.h
    include/gtk-2.0/gtk/gtkpapersize.h
    include/gtk-2.0/gtk/gtkpixmap.h
    include/gtk-2.0/gtk/gtkplug.h
    include/gtk-2.0/gtk/gtkpreview.h
    include/gtk-2.0/gtk/gtkprintcontext.h
    include/gtk-2.0/gtk/gtkprintoperation.h
    include/gtk-2.0/gtk/gtkprintoperationpreview.h
    include/gtk-2.0/gtk/gtkprintsettings.h
    include/gtk-2.0/gtk/gtkprivate.h
    include/gtk-2.0/gtk/gtkprogress.h
    include/gtk-2.0/gtk/gtkprogressbar.h
    include/gtk-2.0/gtk/gtkradioaction.h
    include/gtk-2.0/gtk/gtkradiobutton.h
    include/gtk-2.0/gtk/gtkradiomenuitem.h
    include/gtk-2.0/gtk/gtkradiotoolbutton.h
    include/gtk-2.0/gtk/gtkrange.h
    include/gtk-2.0/gtk/gtkrc.h
    include/gtk-2.0/gtk/gtkrecentaction.h
    include/gtk-2.0/gtk/gtkrecentchooser.h
    include/gtk-2.0/gtk/gtkrecentchooserdialog.h
    include/gtk-2.0/gtk/gtkrecentchoosermenu.h
    include/gtk-2.0/gtk/gtkrecentchooserwidget.h
    include/gtk-2.0/gtk/gtkrecentfilter.h
    include/gtk-2.0/gtk/gtkrecentmanager.h
    include/gtk-2.0/gtk/gtkruler.h
    include/gtk-2.0/gtk/gtkscale.h
    include/gtk-2.0/gtk/gtkscalebutton.h
    include/gtk-2.0/gtk/gtkscrollbar.h
    include/gtk-2.0/gtk/gtkscrolledwindow.h
    include/gtk-2.0/gtk/gtkselection.h
    include/gtk-2.0/gtk/gtkseparator.h
    include/gtk-2.0/gtk/gtkseparatormenuitem.h
    include/gtk-2.0/gtk/gtkseparatortoolitem.h
    include/gtk-2.0/gtk/gtksettings.h
    include/gtk-2.0/gtk/gtkshow.h
    include/gtk-2.0/gtk/gtksignal.h
    include/gtk-2.0/gtk/gtksizegroup.h
    include/gtk-2.0/gtk/gtksocket.h
    include/gtk-2.0/gtk/gtkspinbutton.h
    include/gtk-2.0/gtk/gtkstatusbar.h
    include/gtk-2.0/gtk/gtkstatusicon.h
    include/gtk-2.0/gtk/gtkstock.h
    include/gtk-2.0/gtk/gtkstyle.h
    include/gtk-2.0/gtk/gtktable.h
    include/gtk-2.0/gtk/gtktearoffmenuitem.h
    include/gtk-2.0/gtk/gtktestutils.h
    include/gtk-2.0/gtk/gtktext.h
    include/gtk-2.0/gtk/gtktextbuffer.h
    include/gtk-2.0/gtk/gtktextbufferrichtext.h
    include/gtk-2.0/gtk/gtktextchild.h
    include/gtk-2.0/gtk/gtktextdisplay.h
    include/gtk-2.0/gtk/gtktextiter.h
    include/gtk-2.0/gtk/gtktextlayout.h
    include/gtk-2.0/gtk/gtktextmark.h
    include/gtk-2.0/gtk/gtktexttag.h
    include/gtk-2.0/gtk/gtktexttagtable.h
    include/gtk-2.0/gtk/gtktextview.h
    include/gtk-2.0/gtk/gtktipsquery.h
    include/gtk-2.0/gtk/gtktoggleaction.h
    include/gtk-2.0/gtk/gtktogglebutton.h
    include/gtk-2.0/gtk/gtktoggletoolbutton.h
    include/gtk-2.0/gtk/gtktoolbar.h
    include/gtk-2.0/gtk/gtktoolbutton.h
    include/gtk-2.0/gtk/gtktoolitem.h
    include/gtk-2.0/gtk/gtktoolshell.h
    include/gtk-2.0/gtk/gtktooltip.h
    include/gtk-2.0/gtk/gtktooltips.h
    include/gtk-2.0/gtk/gtktree.h
    include/gtk-2.0/gtk/gtktreednd.h
    include/gtk-2.0/gtk/gtktreeitem.h
    include/gtk-2.0/gtk/gtktreemodel.h
    include/gtk-2.0/gtk/gtktreemodelfilter.h
    include/gtk-2.0/gtk/gtktreemodelsort.h
    include/gtk-2.0/gtk/gtktreeselection.h
    include/gtk-2.0/gtk/gtktreesortable.h
    include/gtk-2.0/gtk/gtktreestore.h
    include/gtk-2.0/gtk/gtktreeview.h
    include/gtk-2.0/gtk/gtktreeviewcolumn.h
    include/gtk-2.0/gtk/gtktypebuiltins.h
    include/gtk-2.0/gtk/gtktypeutils.h
    include/gtk-2.0/gtk/gtkuimanager.h
    include/gtk-2.0/gtk/gtkvbbox.h
    include/gtk-2.0/gtk/gtkvbox.h
    include/gtk-2.0/gtk/gtkversion.h
    include/gtk-2.0/gtk/gtkviewport.h
    include/gtk-2.0/gtk/gtkvolumebutton.h
    include/gtk-2.0/gtk/gtkvpaned.h
    include/gtk-2.0/gtk/gtkvruler.h
    include/gtk-2.0/gtk/gtkvscale.h
    include/gtk-2.0/gtk/gtkvscrollbar.h
    include/gtk-2.0/gtk/gtkvseparator.h
    include/gtk-2.0/gtk/gtkwidget.h
    include/gtk-2.0/gtk/gtkwindow.h
    include/iconv.h
    include/jconfig.h
    include/jerror.h
    include/jmorecfg.h
    include/jpeglib.h
    include/libcharset.h
    include/libintl.h
    include/libpng12/png.h
    include/libpng12/pngconf.h
    include/libxml2/libxml/DOCBparser.h
    include/libxml2/libxml/HTMLparser.h
    include/libxml2/libxml/HTMLtree.h
    include/libxml2/libxml/SAX.h
    include/libxml2/libxml/SAX2.h
    include/libxml2/libxml/c14n.h
    include/libxml2/libxml/catalog.h
    include/libxml2/libxml/chvalid.h
    include/libxml2/libxml/debugXML.h
    include/libxml2/libxml/dict.h
    include/libxml2/libxml/encoding.h
    include/libxml2/libxml/entities.h
    include/libxml2/libxml/globals.h
    include/libxml2/libxml/hash.h
    include/libxml2/libxml/list.h
    include/libxml2/libxml/nanoftp.h
    include/libxml2/libxml/nanohttp.h
    include/libxml2/libxml/parser.h
    include/libxml2/libxml/parserInternals.h
    include/libxml2/libxml/pattern.h
    include/libxml2/libxml/relaxng.h
    include/libxml2/libxml/schemasInternals.h
    include/libxml2/libxml/schematron.h
    include/libxml2/libxml/threads.h
    include/libxml2/libxml/tree.h
    include/libxml2/libxml/uri.h
    include/libxml2/libxml/valid.h
    include/libxml2/libxml/xinclude.h
    include/libxml2/libxml/xlink.h
    include/libxml2/libxml/xmlIO.h
    include/libxml2/libxml/xmlautomata.h
    include/libxml2/libxml/xmlerror.h
    include/libxml2/libxml/xmlexports.h
    include/libxml2/libxml/xmlmemory.h
    include/libxml2/libxml/xmlmodule.h
    include/libxml2/libxml/xmlreader.h
    include/libxml2/libxml/xmlregexp.h
    include/libxml2/libxml/xmlsave.h
    include/libxml2/libxml/xmlschemas.h
    include/libxml2/libxml/xmlschemastypes.h
    include/libxml2/libxml/xmlstring.h
    include/libxml2/libxml/xmlunicode.h
    include/libxml2/libxml/xmlversion.h
    include/libxml2/libxml/xmlwriter.h
    include/libxml2/libxml/xpath.h
    include/libxml2/libxml/xpathInternals.h
    include/libxml2/libxml/xpointer.h
    include/localcharset.h
    include/pango-1.0/pango/pango-attributes.h
    include/pango-1.0/pango/pango-bidi-type.h
    include/pango-1.0/pango/pango-break.h
    include/pango-1.0/pango/pango-context.h
    include/pango-1.0/pango/pango-coverage.h
    include/pango-1.0/pango/pango-engine.h
    include/pango-1.0/pango/pango-enum-types.h
    include/pango-1.0/pango/pango-features.h
    include/pango-1.0/pango/pango-font.h
    include/pango-1.0/pango/pango-fontmap.h
    include/pango-1.0/pango/pango-fontset.h
    include/pango-1.0/pango/pango-glyph-item.h
    include/pango-1.0/pango/pango-glyph.h
    include/pango-1.0/pango/pango-gravity.h
    include/pango-1.0/pango/pango-item.h
    include/pango-1.0/pango/pango-language.h
    include/pango-1.0/pango/pango-layout.h
    include/pango-1.0/pango/pango-matrix.h
    include/pango-1.0/pango/pango-modules.h
    include/pango-1.0/pango/pango-ot.h
    include/pango-1.0/pango/pango-renderer.h
    include/pango-1.0/pango/pango-script.h
    include/pango-1.0/pango/pango-tabs.h
    include/pango-1.0/pango/pango-types.h
    include/pango-1.0/pango/pango-utils.h
    include/pango-1.0/pango/pango.h
    include/pango-1.0/pango/pangocairo.h
    include/pango-1.0/pango/pangofc-decoder.h
    include/pango-1.0/pango/pangofc-font.h
    include/pango-1.0/pango/pangofc-fontmap.h
    include/pango-1.0/pango/pangoft2.h
    include/pango-1.0/pango/pangowin32.h
    include/pixman-1/pixman-version.h
    include/pixman-1/pixman.h
    include/png.h
    include/pngconf.h
    include/tiff.h
    include/tiffconf.h
    include/tiffio.h
    include/tiffio.hxx
    include/tiffvers.h
    include/zconf.h
    include/zlib.h
    lib/asprintf.lib
    lib/atk-1.0.def
    lib/charset.lib
    lib/fontconfig.def
    lib/gailutil.def
    lib/gdk-win32-2.0.def
    lib/gdk_pixbuf-2.0.def
    lib/gio-2.0.def
    lib/glib-2.0.def
    lib/glib-2.0/include/glibconfig.h
    lib/gmodule-2.0.def
    lib/gobject-2.0.def
    lib/gthread-2.0.def
    lib/gtk-2.0/2.10.0/engines/libpixmap.dll.a
    lib/gtk-2.0/2.10.0/engines/libpixmap.la
    lib/gtk-2.0/2.10.0/engines/libwimp.dll.a
    lib/gtk-2.0/2.10.0/engines/libwimp.la
    lib/gtk-2.0/2.10.0/immodules/im-am-et.dll.a
    lib/gtk-2.0/2.10.0/immodules/im-am-et.la
    lib/gtk-2.0/2.10.0/immodules/im-cedilla.dll.a
    lib/gtk-2.0/2.10.0/immodules/im-cedilla.la
    lib/gtk-2.0/2.10.0/immodules/im-cyrillic-translit.dll.a
    lib/gtk-2.0/2.10.0/immodules/im-cyrillic-translit.la
    lib/gtk-2.0/2.10.0/immodules/im-inuktitut.dll.a
    lib/gtk-2.0/2.10.0/immodules/im-inuktitut.la
    lib/gtk-2.0/2.10.0/immodules/im-ipa.dll.a
    lib/gtk-2.0/2.10.0/immodules/im-ipa.la
    lib/gtk-2.0/2.10.0/immodules/im-multipress.dll.a
    lib/gtk-2.0/2.10.0/immodules/im-multipress.la
    lib/gtk-2.0/2.10.0/immodules/im-thai.dll.a
    lib/gtk-2.0/2.10.0/immodules/im-thai.la
    lib/gtk-2.0/2.10.0/immodules/im-ti-er.dll.a
    lib/gtk-2.0/2.10.0/immodules/im-ti-er.la
    lib/gtk-2.0/2.10.0/immodules/im-ti-et.dll.a
    lib/gtk-2.0/2.10.0/immodules/im-ti-et.la
    lib/gtk-2.0/2.10.0/immodules/im-viqr.dll.a
    lib/gtk-2.0/2.10.0/immodules/im-viqr.la
    lib/gtk-2.0/include/gdkconfig.h
    lib/gtk-2.0/modules/libgail.dll.a
    lib/gtk-2.0/modules/libgail.la
    lib/gtk-win32-2.0.def
    lib/iconv.lib
    lib/intl.lib
    lib/libasprintf.a
    lib/libasprintf.dll.a
    lib/libasprintf.la
    lib/libatk-1.0.dll.a
    lib/libatk-1.0.la
    lib/libcairo.a
    lib/libcairo.dll.a
    lib/libcairo.la
    lib/libcharset.a
    lib/libcharset.dll.a
    lib/libcharset.la
    lib/libexpat.a
    lib/libexpat.dll.a
    lib/libexpat.la
    lib/libfontconfig.a
    lib/libfontconfig.dll.a
    lib/libfontconfig.la
    lib/libfreetype.a
    lib/libfreetype.dll.a
    lib/libfreetype.la
    lib/libgailutil.dll.a
    lib/libgailutil.la
    lib/libgdk-win32-2.0.dll.a
    lib/libgdk-win32-2.0.la
    lib/libgdk_pixbuf-2.0.dll.a
    lib/libgdk_pixbuf-2.0.la
    lib/libgettextlib.dll.a
    lib/libgettextlib.la
    lib/libgettextpo.a
    lib/libgettextpo.dll.a
    lib/libgettextpo.la
    lib/libgettextsrc.dll.a
    lib/libgettextsrc.la
    lib/libgio-2.0.dll.a
    lib/libgio-2.0.la
    lib/libglib-2.0.dll.a
    lib/libglib-2.0.la
    lib/libgmodule-2.0.dll.a
    lib/libgmodule-2.0.la
    lib/libgobject-2.0.dll.a
    lib/libgobject-2.0.la
    lib/libgthread-2.0.dll.a
    lib/libgthread-2.0.la
    lib/libgtk-win32-2.0.dll.a
    lib/libgtk-win32-2.0.la
    lib/libiconv.a
    lib/libiconv.def
    lib/libiconv.dll.a
    lib/libiconv.la
    lib/libintl.a
    lib/libintl.def
    lib/libintl.dll.a
    lib/libjpeg.a
    lib/libjpeg.dll.a
    lib/libjpeg.la
    lib/libpango-1.0.dll.a
    lib/libpango-1.0.la
    lib/libpangocairo-1.0.dll.a
    lib/libpangocairo-1.0.la
    lib/libpangoft2-1.0.dll.a
    lib/libpangoft2-1.0.la
    lib/libpangowin32-1.0.dll.a
    lib/libpangowin32-1.0.la
    lib/libpixman-1.a
    lib/libpixman-1.dll.a
    lib/libpixman-1.la
    lib/libpng.a
    lib/libpng.dll.a
    lib/libpng.la
    lib/libpng12.a
    lib/libpng12.dll.a
    lib/libpng12.la
    lib/libtiff.a
    lib/libtiff.dll.a
    lib/libtiff.la
    lib/libtiffxx.a
    lib/libtiffxx.dll.a
    lib/libtiffxx.la
    lib/libxml2.a
    lib/libxml2.dll.a
    lib/libxml2.la
    lib/libz.a
    lib/libz.dll.a
    lib/pango-1.0.def
    lib/pangocairo-1.0.def
    lib/pangoft2-1.0.def
    lib/pangowin32-1.0.def
    lib/pkgconfig/atk.pc
    lib/pkgconfig/cairo-ft.pc
    lib/pkgconfig/cairo-pdf.pc
    lib/pkgconfig/cairo-png.pc
    lib/pkgconfig/cairo-ps.pc
    lib/pkgconfig/cairo-svg.pc
    lib/pkgconfig/cairo-win32-font.pc
    lib/pkgconfig/cairo-win32.pc
    lib/pkgconfig/cairo.pc
    lib/pkgconfig/fontconfig.pc
    lib/pkgconfig/freetype2.pc
    lib/pkgconfig/gail.pc
    lib/pkgconfig/gdk-2.0.pc
    lib/pkgconfig/gdk-pixbuf-2.0.pc
    lib/pkgconfig/gdk-win32-2.0.pc
    lib/pkgconfig/gio-2.0.pc
    lib/pkgconfig/gio-unix-2.0.pc
    lib/pkgconfig/glib-2.0.pc
    lib/pkgconfig/gmodule-2.0.pc
    lib/pkgconfig/gmodule-export-2.0.pc
    lib/pkgconfig/gmodule-no-export-2.0.pc
    lib/pkgconfig/gobject-2.0.pc
    lib/pkgconfig/gthread-2.0.pc
    lib/pkgconfig/gtk+-2.0.pc
    lib/pkgconfig/gtk+-win32-2.0.pc
    lib/pkgconfig/libpng.pc
    lib/pkgconfig/libpng12.pc
    lib/pkgconfig/libxml-2.0.pc
    lib/pkgconfig/pango.pc
    lib/pkgconfig/pangocairo.pc
    lib/pkgconfig/pangoft2.pc
    lib/pkgconfig/pangowin32.pc
    lib/pkgconfig/pixman-1.pc
    lib/xml2Conf.sh
    lib/zdll.exp
    lib/zdll.lib
    lib/zlib.def
    share/aclocal/codeset.m4
    share/aclocal/freetype2.m4
    share/aclocal/gettext.m4
    share/aclocal/glib-2.0.m4
    share/aclocal/glib-gettext.m4
    share/aclocal/glibc2.m4
    share/aclocal/glibc21.m4
    share/aclocal/gtk-2.0.m4
    share/aclocal/iconv.m4
    share/aclocal/intdiv0.m4
    share/aclocal/intl.m4
    share/aclocal/intldir.m4
    share/aclocal/intlmacosx.m4
    share/aclocal/intmax.m4
    share/aclocal/inttypes-pri.m4
    share/aclocal/inttypes_h.m4
    share/aclocal/lcmessage.m4
    share/aclocal/lib-ld.m4
    share/aclocal/lib-link.m4
    share/aclocal/lib-prefix.m4
    share/aclocal/libxml.m4
    share/aclocal/lock.m4
    share/aclocal/longlong.m4
    share/aclocal/nls.m4
    share/aclocal/po.m4
    share/aclocal/printf-posix.m4
    share/aclocal/progtest.m4
    share/aclocal/size_max.m4
    share/aclocal/stdint_h.m4
    share/aclocal/uintmax_t.m4
    share/aclocal/visibility.m4
    share/aclocal/wchar_t.m4
    share/aclocal/wint_t.m4
    share/aclocal/xsize.m4
    share/doc/gettext/bind_textdomain_codeset.3.html
    share/doc/gettext/bindtextdomain.3.html
    share/doc/gettext/envsubst.1.html
    share/doc/gettext/gettext.1.html
    share/doc/gettext/gettext.3.html
    share/doc/gettext/ngettext.1.html
    share/doc/gettext/ngettext.3.html
    share/doc/gettext/textdomain.3.html
    share/doc/libasprintf/autosprintf.html
    share/doc/libiconv/iconv.1.html
    share/doc/libiconv/iconv.3.html
    share/doc/libiconv/iconv_close.3.html
    share/doc/libiconv/iconv_open.3.html
    share/glib-2.0/gettext/mkinstalldirs
    share/glib-2.0/gettext/po/Makefile.in.in
    share/gtk-2.0/demo/alphatest.png
    share/gtk-2.0/demo/apple-red.png
    share/gtk-2.0/demo/appwindow.c
    share/gtk-2.0/demo/assistant.c
    share/gtk-2.0/demo/background.jpg
    share/gtk-2.0/demo/builder.c
    share/gtk-2.0/demo/button_box.c
    share/gtk-2.0/demo/changedisplay.c
    share/gtk-2.0/demo/clipboard.c
    share/gtk-2.0/demo/colorsel.c
    share/gtk-2.0/demo/combobox.c
    share/gtk-2.0/demo/demo.ui
    share/gtk-2.0/demo/dialog.c
    share/gtk-2.0/demo/drawingarea.c
    share/gtk-2.0/demo/editable_cells.c
    share/gtk-2.0/demo/entry_completion.c
    share/gtk-2.0/demo/expander.c
    share/gtk-2.0/demo/floppybuddy.gif
    share/gtk-2.0/demo/gnome-applets.png
    share/gtk-2.0/demo/gnome-calendar.png
    share/gtk-2.0/demo/gnome-foot.png
    share/gtk-2.0/demo/gnome-fs-directory.png
    share/gtk-2.0/demo/gnome-fs-regular.png
    share/gtk-2.0/demo/gnome-gimp.png
    share/gtk-2.0/demo/gnome-gmush.png
    share/gtk-2.0/demo/gnome-gsame.png
    share/gtk-2.0/demo/gnu-keys.png
    share/gtk-2.0/demo/gtk-logo-rgb.gif
    share/gtk-2.0/demo/hypertext.c
    share/gtk-2.0/demo/iconview.c
    share/gtk-2.0/demo/iconview_edit.c
    share/gtk-2.0/demo/images.c
    share/gtk-2.0/demo/list_store.c
    share/gtk-2.0/demo/menus.c
    share/gtk-2.0/demo/panes.c
    share/gtk-2.0/demo/pickers.c
    share/gtk-2.0/demo/pixbufs.c
    share/gtk-2.0/demo/printing.c
    share/gtk-2.0/demo/rotated_text.c
    share/gtk-2.0/demo/search_entry.c
    share/gtk-2.0/demo/sizegroup.c
    share/gtk-2.0/demo/stock_browser.c
    share/gtk-2.0/demo/textscroll.c
    share/gtk-2.0/demo/textview.c
    share/gtk-2.0/demo/tree_store.c
    share/gtk-2.0/demo/ui_manager.c
    share/gtk-doc/html/atk/AtkAction.html
    share/gtk-doc/html/atk/AtkComponent.html
    share/gtk-doc/html/atk/AtkDocument.html
    share/gtk-doc/html/atk/AtkEditableText.html
    share/gtk-doc/html/atk/AtkGObjectAccessible.html
    share/gtk-doc/html/atk/AtkHyperlink.html
    share/gtk-doc/html/atk/AtkHypertext.html
    share/gtk-doc/html/atk/AtkImage.html
    share/gtk-doc/html/atk/AtkNoOpObject.html
    share/gtk-doc/html/atk/AtkNoOpObjectFactory.html
    share/gtk-doc/html/atk/AtkObject.html
    share/gtk-doc/html/atk/AtkObjectFactory.html
    share/gtk-doc/html/atk/AtkRegistry.html
    share/gtk-doc/html/atk/AtkRelation.html
    share/gtk-doc/html/atk/AtkRelationSet.html
    share/gtk-doc/html/atk/AtkSelection.html
    share/gtk-doc/html/atk/AtkStateSet.html
    share/gtk-doc/html/atk/AtkStreamableContent.html
    share/gtk-doc/html/atk/AtkTable.html
    share/gtk-doc/html/atk/AtkText.html
    share/gtk-doc/html/atk/AtkUtil.html
    share/gtk-doc/html/atk/AtkValue.html
    share/gtk-doc/html/atk/atk-AtkHyperlinkImpl.html
    share/gtk-doc/html/atk/atk-AtkState.html
    share/gtk-doc/html/atk/atk.devhelp
    share/gtk-doc/html/atk/atk.devhelp2
    share/gtk-doc/html/atk/atk.html
    share/gtk-doc/html/atk/home.png
    share/gtk-doc/html/atk/index.html
    share/gtk-doc/html/atk/index.sgml
    share/gtk-doc/html/atk/ix01.html
    share/gtk-doc/html/atk/ix02.html
    share/gtk-doc/html/atk/ix03.html
    share/gtk-doc/html/atk/ix04.html
    share/gtk-doc/html/atk/ix05.html
    share/gtk-doc/html/atk/ix06.html
    share/gtk-doc/html/atk/ix07.html
    share/gtk-doc/html/atk/left.png
    share/gtk-doc/html/atk/right.png
    share/gtk-doc/html/atk/style.css
    share/gtk-doc/html/atk/up.png
    share/gtk-doc/html/cairo/bindings-errors.html
    share/gtk-doc/html/cairo/bindings-fonts.html
    share/gtk-doc/html/cairo/bindings-memory.html
    share/gtk-doc/html/cairo/bindings-overloading.html
    share/gtk-doc/html/cairo/bindings-path.html
    share/gtk-doc/html/cairo/bindings-patterns.html
    share/gtk-doc/html/cairo/bindings-return-values.html
    share/gtk-doc/html/cairo/bindings-streams.html
    share/gtk-doc/html/cairo/bindings-surfaces.html
    share/gtk-doc/html/cairo/cairo-context.html
    share/gtk-doc/html/cairo/cairo-drawing.html
    share/gtk-doc/html/cairo/cairo-error-status.html
    share/gtk-doc/html/cairo/cairo-font-face.html
    share/gtk-doc/html/cairo/cairo-font-options.html
    share/gtk-doc/html/cairo/cairo-fonts.html
    share/gtk-doc/html/cairo/cairo-ft-font.html
    share/gtk-doc/html/cairo/cairo-image-surface.html
    share/gtk-doc/html/cairo/cairo-matrix.html
    share/gtk-doc/html/cairo/cairo-paths.html
    share/gtk-doc/html/cairo/cairo-pattern.html
    share/gtk-doc/html/cairo/cairo-pdf-surface.html
    share/gtk-doc/html/cairo/cairo-png-functions.html
    share/gtk-doc/html/cairo/cairo-ps-surface.html
    share/gtk-doc/html/cairo/cairo-quartz-font.html
    share/gtk-doc/html/cairo/cairo-quartz-surface.html
    share/gtk-doc/html/cairo/cairo-scaled-font.html
    share/gtk-doc/html/cairo/cairo-support.html
    share/gtk-doc/html/cairo/cairo-surface.html
    share/gtk-doc/html/cairo/cairo-surfaces.html
    share/gtk-doc/html/cairo/cairo-svg-surface.html
    share/gtk-doc/html/cairo/cairo-text.html
    share/gtk-doc/html/cairo/cairo-transformations.html
    share/gtk-doc/html/cairo/cairo-types.html
    share/gtk-doc/html/cairo/cairo-user-font.html
    share/gtk-doc/html/cairo/cairo-version-info.html
    share/gtk-doc/html/cairo/cairo-win32-font.html
    share/gtk-doc/html/cairo/cairo-win32-surface.html
    share/gtk-doc/html/cairo/cairo-xlib-surface.html
    share/gtk-doc/html/cairo/cairo.devhelp
    share/gtk-doc/html/cairo/cairo.devhelp2
    share/gtk-doc/html/cairo/home.png
    share/gtk-doc/html/cairo/index-1.2.html
    share/gtk-doc/html/cairo/index-1.4.html
    share/gtk-doc/html/cairo/index-1.6.html
    share/gtk-doc/html/cairo/index-1.8.html
    share/gtk-doc/html/cairo/index-all.html
    share/gtk-doc/html/cairo/index.html
    share/gtk-doc/html/cairo/index.sgml
    share/gtk-doc/html/cairo/language-bindings.html
    share/gtk-doc/html/cairo/left.png
    share/gtk-doc/html/cairo/right.png
    share/gtk-doc/html/cairo/style.css
    share/gtk-doc/html/cairo/up.png
    share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html
    share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html
    share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp
    share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2
    share/gtk-doc/html/gail-libgail-util/home.png
    share/gtk-doc/html/gail-libgail-util/index.html
    share/gtk-doc/html/gail-libgail-util/index.sgml
    share/gtk-doc/html/gail-libgail-util/left.png
    share/gtk-doc/html/gail-libgail-util/libgail-util-main.html
    share/gtk-doc/html/gail-libgail-util/right.png
    share/gtk-doc/html/gail-libgail-util/style.css
    share/gtk-doc/html/gail-libgail-util/up.png
    share/gtk-doc/html/gdk-pixbuf/GdkPixbufLoader.html
    share/gtk-doc/html/gdk-pixbuf/apa.html
    share/gtk-doc/html/gdk-pixbuf/apas02.html
    share/gtk-doc/html/gdk-pixbuf/apas03.html
    share/gtk-doc/html/gdk-pixbuf/api-index-2-10.html
    share/gtk-doc/html/gdk-pixbuf/api-index-2-12.html
    share/gtk-doc/html/gdk-pixbuf/api-index-2-14.html
    share/gtk-doc/html/gdk-pixbuf/api-index-2-2.html
    share/gtk-doc/html/gdk-pixbuf/api-index-2-4.html
    share/gtk-doc/html/gdk-pixbuf/api-index-2-6.html
    share/gtk-doc/html/gdk-pixbuf/api-index-2-8.html
    share/gtk-doc/html/gdk-pixbuf/api-index-deprecated.html
    share/gtk-doc/html/gdk-pixbuf/api-index-full.html
    share/gtk-doc/html/gdk-pixbuf/composite.png
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-Module-Interface.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-Versioning.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-animation.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-creating.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-csource.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-file-loading.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-file-saving.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-from-drawables.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-rendering.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-from-drawables.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-init.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-rendering.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-rgb.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-inline.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-query-loaders.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-refcounting.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-scaling.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-util.html
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf.devhelp
    share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf.devhelp2
    share/gtk-doc/html/gdk-pixbuf/home.png
    share/gtk-doc/html/gdk-pixbuf/index.html
    share/gtk-doc/html/gdk-pixbuf/index.sgml
    share/gtk-doc/html/gdk-pixbuf/left.png
    share/gtk-doc/html/gdk-pixbuf/license.html
    share/gtk-doc/html/gdk-pixbuf/right.png
    share/gtk-doc/html/gdk-pixbuf/rn01.html
    share/gtk-doc/html/gdk-pixbuf/rn02.html
    share/gtk-doc/html/gdk-pixbuf/style.css
    share/gtk-doc/html/gdk-pixbuf/up.png
    share/gtk-doc/html/gdk/GdkDisplay.html
    share/gtk-doc/html/gdk/GdkDisplayManager.html
    share/gtk-doc/html/gdk/GdkScreen.html
    share/gtk-doc/html/gdk/X_cursor.png
    share/gtk-doc/html/gdk/api-index-2-10.html
    share/gtk-doc/html/gdk/api-index-2-12.html
    share/gtk-doc/html/gdk/api-index-2-14.html
    share/gtk-doc/html/gdk/api-index-2-16.html
    share/gtk-doc/html/gdk/api-index-2-2.html
    share/gtk-doc/html/gdk/api-index-2-4.html
    share/gtk-doc/html/gdk/api-index-2-6.html
    share/gtk-doc/html/gdk/api-index-2-8.html
    share/gtk-doc/html/gdk/api-index-deprecated.html
    share/gtk-doc/html/gdk/api-index-full.html
    share/gtk-doc/html/gdk/arrow.png
    share/gtk-doc/html/gdk/based_arrow_down.png
    share/gtk-doc/html/gdk/based_arrow_up.png
    share/gtk-doc/html/gdk/boat.png
    share/gtk-doc/html/gdk/bogosity.png
    share/gtk-doc/html/gdk/bottom_left_corner.png
    share/gtk-doc/html/gdk/bottom_right_corner.png
    share/gtk-doc/html/gdk/bottom_side.png
    share/gtk-doc/html/gdk/bottom_tee.png
    share/gtk-doc/html/gdk/box_spiral.png
    share/gtk-doc/html/gdk/center_ptr.png
    share/gtk-doc/html/gdk/circle.png
    share/gtk-doc/html/gdk/clock.png
    share/gtk-doc/html/gdk/coffee_mug.png
    share/gtk-doc/html/gdk/cross.png
    share/gtk-doc/html/gdk/cross_reverse.png
    share/gtk-doc/html/gdk/crosshair.png
    share/gtk-doc/html/gdk/diamond_cross.png
    share/gtk-doc/html/gdk/dot.png
    share/gtk-doc/html/gdk/dotbox.png
    share/gtk-doc/html/gdk/double_arrow.png
    share/gtk-doc/html/gdk/draft_large.png
    share/gtk-doc/html/gdk/draft_small.png
    share/gtk-doc/html/gdk/draped_box.png
    share/gtk-doc/html/gdk/exchange.png
    share/gtk-doc/html/gdk/fleur.png
    share/gtk-doc/html/gdk/gdk-Application-launching.html
    share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html
    share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html
    share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html
    share/gtk-doc/html/gdk/gdk-Cursors.html
    share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html
    share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html
    share/gtk-doc/html/gdk/gdk-Event-Structures.html
    share/gtk-doc/html/gdk/gdk-Events.html
    share/gtk-doc/html/gdk/gdk-Fonts.html
    share/gtk-doc/html/gdk/gdk-GdkRGB.html
    share/gtk-doc/html/gdk/gdk-General.html
    share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html
    share/gtk-doc/html/gdk/gdk-Images.html
    share/gtk-doc/html/gdk/gdk-Input-Devices.html
    share/gtk-doc/html/gdk/gdk-Input.html
    share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html
    share/gtk-doc/html/gdk/gdk-Pango-Interaction.html
    share/gtk-doc/html/gdk/gdk-Pixbufs.html
    share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html
    share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html
    share/gtk-doc/html/gdk/gdk-Selections.html
    share/gtk-doc/html/gdk/gdk-Testing.html
    share/gtk-doc/html/gdk/gdk-Threads.html
    share/gtk-doc/html/gdk/gdk-Visuals.html
    share/gtk-doc/html/gdk/gdk-Windows.html
    share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html
    share/gtk-doc/html/gdk/gdk.devhelp
    share/gtk-doc/html/gdk/gdk.devhelp2
    share/gtk-doc/html/gdk/gobbler.png
    share/gtk-doc/html/gdk/gumby.png
    share/gtk-doc/html/gdk/hand1.png
    share/gtk-doc/html/gdk/hand2.png
    share/gtk-doc/html/gdk/heart.png
    share/gtk-doc/html/gdk/home.png
    share/gtk-doc/html/gdk/icon.png
    share/gtk-doc/html/gdk/index.html
    share/gtk-doc/html/gdk/index.sgml
    share/gtk-doc/html/gdk/iron_cross.png
    share/gtk-doc/html/gdk/left.png
    share/gtk-doc/html/gdk/left_ptr.png
    share/gtk-doc/html/gdk/left_side.png
    share/gtk-doc/html/gdk/left_tee.png
    share/gtk-doc/html/gdk/leftbutton.png
    share/gtk-doc/html/gdk/ll_angle.png
    share/gtk-doc/html/gdk/lr_angle.png
    share/gtk-doc/html/gdk/man.png
    share/gtk-doc/html/gdk/middlebutton.png
    share/gtk-doc/html/gdk/mouse.png
    share/gtk-doc/html/gdk/multihead.html
    share/gtk-doc/html/gdk/pencil.png
    share/gtk-doc/html/gdk/pirate.png
    share/gtk-doc/html/gdk/plus.png
    share/gtk-doc/html/gdk/question_arrow.png
    share/gtk-doc/html/gdk/reference.html
    share/gtk-doc/html/gdk/right.png
    share/gtk-doc/html/gdk/right_ptr.png
    share/gtk-doc/html/gdk/right_side.png
    share/gtk-doc/html/gdk/right_tee.png
    share/gtk-doc/html/gdk/rightbutton.png
    share/gtk-doc/html/gdk/rotated-text.png
    share/gtk-doc/html/gdk/rtl_logo.png
    share/gtk-doc/html/gdk/sailboat.png
    share/gtk-doc/html/gdk/sb_down_arrow.png
    share/gtk-doc/html/gdk/sb_h_double_arrow.png
    share/gtk-doc/html/gdk/sb_left_arrow.png
    share/gtk-doc/html/gdk/sb_right_arrow.png
    share/gtk-doc/html/gdk/sb_up_arrow.png
    share/gtk-doc/html/gdk/sb_v_double_arrow.png
    share/gtk-doc/html/gdk/shuttle.png
    share/gtk-doc/html/gdk/sizing.png
    share/gtk-doc/html/gdk/spider.png
    share/gtk-doc/html/gdk/spraycan.png
    share/gtk-doc/html/gdk/star.png
    share/gtk-doc/html/gdk/style.css
    share/gtk-doc/html/gdk/target.png
    share/gtk-doc/html/gdk/tcross.png
    share/gtk-doc/html/gdk/top_left_arrow.png
    share/gtk-doc/html/gdk/top_left_corner.png
    share/gtk-doc/html/gdk/top_right_corner.png
    share/gtk-doc/html/gdk/top_side.png
    share/gtk-doc/html/gdk/top_tee.png
    share/gtk-doc/html/gdk/trek.png
    share/gtk-doc/html/gdk/ul_angle.png
    share/gtk-doc/html/gdk/umbrella.png
    share/gtk-doc/html/gdk/up.png
    share/gtk-doc/html/gdk/ur_angle.png
    share/gtk-doc/html/gdk/watch.png
    share/gtk-doc/html/gdk/xterm.png
    share/gtk-doc/html/gio/GAppInfo.html
    share/gtk-doc/html/gio/GAsyncResult.html
    share/gtk-doc/html/gio/GBufferedInputStream.html
    share/gtk-doc/html/gio/GBufferedOutputStream.html
    share/gtk-doc/html/gio/GCancellable.html
    share/gtk-doc/html/gio/GDataInputStream.html
    share/gtk-doc/html/gio/GDataOutputStream.html
    share/gtk-doc/html/gio/GDrive.html
    share/gtk-doc/html/gio/GEmblem.html
    share/gtk-doc/html/gio/GEmblemedIcon.html
    share/gtk-doc/html/gio/GFile.html
    share/gtk-doc/html/gio/GFileEnumerator.html
    share/gtk-doc/html/gio/GFileIcon.html
    share/gtk-doc/html/gio/GFileInfo.html
    share/gtk-doc/html/gio/GFileInputStream.html
    share/gtk-doc/html/gio/GFileMonitor.html
    share/gtk-doc/html/gio/GFileOutputStream.html
    share/gtk-doc/html/gio/GFilenameCompleter.html
    share/gtk-doc/html/gio/GFilterInputStream.html
    share/gtk-doc/html/gio/GFilterOutputStream.html
    share/gtk-doc/html/gio/GIOModule.html
    share/gtk-doc/html/gio/GIcon.html
    share/gtk-doc/html/gio/GInputStream.html
    share/gtk-doc/html/gio/GLoadableIcon.html
    share/gtk-doc/html/gio/GMemoryInputStream.html
    share/gtk-doc/html/gio/GMemoryOutputStream.html
    share/gtk-doc/html/gio/GMount.html
    share/gtk-doc/html/gio/GMountOperation.html
    share/gtk-doc/html/gio/GOutputStream.html
    share/gtk-doc/html/gio/GSeekable.html
    share/gtk-doc/html/gio/GSimpleAsyncResult.html
    share/gtk-doc/html/gio/GThemedIcon.html
    share/gtk-doc/html/gio/GUnixInputStream.html
    share/gtk-doc/html/gio/GUnixOutputStream.html
    share/gtk-doc/html/gio/GVfs.html
    share/gtk-doc/html/gio/GVolume.html
    share/gtk-doc/html/gio/GVolumeMonitor.html
    share/gtk-doc/html/gio/async.html
    share/gtk-doc/html/gio/ch01.html
    share/gtk-doc/html/gio/ch02.html
    share/gtk-doc/html/gio/ch03.html
    share/gtk-doc/html/gio/ch14.html
    share/gtk-doc/html/gio/ch15.html
    share/gtk-doc/html/gio/ch15s02.html
    share/gtk-doc/html/gio/ch15s03.html
    share/gtk-doc/html/gio/extending-gio.html
    share/gtk-doc/html/gio/extending.html
    share/gtk-doc/html/gio/file_mon.html
    share/gtk-doc/html/gio/file_ops.html
    share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html
    share/gtk-doc/html/gio/gio-Extension-Points.html
    share/gtk-doc/html/gio/gio-GContentType.html
    share/gtk-doc/html/gio/gio-GFileAttribute.html
    share/gtk-doc/html/gio/gio-GIOError.html
    share/gtk-doc/html/gio/gio-GIOScheduler.html
    share/gtk-doc/html/gio/gio-Unix-Mounts.html
    share/gtk-doc/html/gio/gio-hierarchy.html
    share/gtk-doc/html/gio/gio.devhelp
    share/gtk-doc/html/gio/gio.devhelp2
    share/gtk-doc/html/gio/gvfs-overview.png
    share/gtk-doc/html/gio/home.png
    share/gtk-doc/html/gio/icons.html
    share/gtk-doc/html/gio/index.html
    share/gtk-doc/html/gio/index.sgml
    share/gtk-doc/html/gio/ix01.html
    share/gtk-doc/html/gio/ix02.html
    share/gtk-doc/html/gio/ix03.html
    share/gtk-doc/html/gio/left.png
    share/gtk-doc/html/gio/migrating.html
    share/gtk-doc/html/gio/pt01.html
    share/gtk-doc/html/gio/pt02.html
    share/gtk-doc/html/gio/right.png
    share/gtk-doc/html/gio/streaming.html
    share/gtk-doc/html/gio/style.css
    share/gtk-doc/html/gio/types.html
    share/gtk-doc/html/gio/up.png
    share/gtk-doc/html/gio/utils.html
    share/gtk-doc/html/gio/volume_mon.html
    share/gtk-doc/html/glib/file-name-encodings.png
    share/gtk-doc/html/glib/glib-Arrays.html
    share/gtk-doc/html/glib/glib-Asynchronous-Queues.html
    share/gtk-doc/html/glib/glib-Atomic-Operations.html
    share/gtk-doc/html/glib/glib-Automatic-String-Completion.html
    share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html
    share/gtk-doc/html/glib/glib-Base64-Encoding.html
    share/gtk-doc/html/glib/glib-Basic-Types.html
    share/gtk-doc/html/glib/glib-Bookmark-file-parser.html
    share/gtk-doc/html/glib/glib-Byte-Arrays.html
    share/gtk-doc/html/glib/glib-Byte-Order-Macros.html
    share/gtk-doc/html/glib/glib-Caches.html
    share/gtk-doc/html/glib/glib-Character-Set-Conversion.html
    share/gtk-doc/html/glib/glib-Commandline-option-parser.html
    share/gtk-doc/html/glib/glib-Data-Checksums.html
    share/gtk-doc/html/glib/glib-Datasets.html
    share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html
    share/gtk-doc/html/glib/glib-Double-ended-Queues.html
    share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html
    share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html
    share/gtk-doc/html/glib/glib-Error-Reporting.html
    share/gtk-doc/html/glib/glib-File-Utilities.html
    share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html
    share/gtk-doc/html/glib/glib-Hash-Tables.html
    share/gtk-doc/html/glib/glib-Hook-Functions.html
    share/gtk-doc/html/glib/glib-I18N.html
    share/gtk-doc/html/glib/glib-IO-Channels.html
    share/gtk-doc/html/glib/glib-Key-value-file-parser.html
    share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html
    share/gtk-doc/html/glib/glib-Lexical-Scanner.html
    share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html
    share/gtk-doc/html/glib/glib-Memory-Allocation.html
    share/gtk-doc/html/glib/glib-Memory-Allocators.html
    share/gtk-doc/html/glib/glib-Memory-Chunks.html
    share/gtk-doc/html/glib/glib-Memory-Slices.html
    share/gtk-doc/html/glib/glib-Message-Logging.html
    share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html
    share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html
    share/gtk-doc/html/glib/glib-N-ary-Trees.html
    share/gtk-doc/html/glib/glib-Numerical-Definitions.html
    share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html
    share/gtk-doc/html/glib/glib-Pointer-Arrays.html
    share/gtk-doc/html/glib/glib-Quarks.html
    share/gtk-doc/html/glib/glib-Random-Numbers.html
    share/gtk-doc/html/glib/glib-Relations-and-Tuples.html
    share/gtk-doc/html/glib/glib-Sequences.html
    share/gtk-doc/html/glib/glib-Shell-related-Utilities.html
    share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html
    share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html
    share/gtk-doc/html/glib/glib-Spawning-Processes.html
    share/gtk-doc/html/glib/glib-Standard-Macros.html
    share/gtk-doc/html/glib/glib-String-Chunks.html
    share/gtk-doc/html/glib/glib-String-Utility-Functions.html
    share/gtk-doc/html/glib/glib-Strings.html
    share/gtk-doc/html/glib/glib-Testing.html
    share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html
    share/gtk-doc/html/glib/glib-Thread-Pools.html
    share/gtk-doc/html/glib/glib-Threads.html
    share/gtk-doc/html/glib/glib-Timers.html
    share/gtk-doc/html/glib/glib-Trash-Stacks.html
    share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html
    share/gtk-doc/html/glib/glib-URI-Functions.html
    share/gtk-doc/html/glib/glib-Unicode-Manipulation.html
    share/gtk-doc/html/glib/glib-Version-Information.html
    share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html
    share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html
    share/gtk-doc/html/glib/glib-building.html
    share/gtk-doc/html/glib/glib-changes.html
    share/gtk-doc/html/glib/glib-compiling.html
    share/gtk-doc/html/glib/glib-core.html
    share/gtk-doc/html/glib/glib-cross-compiling.html
    share/gtk-doc/html/glib/glib-data-types.html
    share/gtk-doc/html/glib/glib-fundamentals.html
    share/gtk-doc/html/glib/glib-gettextize.html
    share/gtk-doc/html/glib/glib-regex-syntax.html
    share/gtk-doc/html/glib/glib-resources.html
    share/gtk-doc/html/glib/glib-running.html
    share/gtk-doc/html/glib/glib-utilities.html
    share/gtk-doc/html/glib/glib.devhelp
    share/gtk-doc/html/glib/glib.devhelp2
    share/gtk-doc/html/glib/glib.html
    share/gtk-doc/html/glib/gtester-report.html
    share/gtk-doc/html/glib/gtester.html
    share/gtk-doc/html/glib/home.png
    share/gtk-doc/html/glib/index.html
    share/gtk-doc/html/glib/index.sgml
    share/gtk-doc/html/glib/ix01.html
    share/gtk-doc/html/glib/ix02.html
    share/gtk-doc/html/glib/ix03.html
    share/gtk-doc/html/glib/ix04.html
    share/gtk-doc/html/glib/ix05.html
    share/gtk-doc/html/glib/ix06.html
    share/gtk-doc/html/glib/ix07.html
    share/gtk-doc/html/glib/ix08.html
    share/gtk-doc/html/glib/ix09.html
    share/gtk-doc/html/glib/ix10.html
    share/gtk-doc/html/glib/ix11.html
    share/gtk-doc/html/glib/ix12.html
    share/gtk-doc/html/glib/left.png
    share/gtk-doc/html/glib/mainloop-states.gif
    share/gtk-doc/html/glib/right.png
    share/gtk-doc/html/glib/style.css
    share/gtk-doc/html/glib/tools.html
    share/gtk-doc/html/glib/up.png
    share/gtk-doc/html/gobject/GTypeModule.html
    share/gtk-doc/html/gobject/GTypePlugin.html
    share/gtk-doc/html/gobject/ch01s02.html
    share/gtk-doc/html/gobject/ch06s03.html
    share/gtk-doc/html/gobject/chapter-gobject.html
    share/gtk-doc/html/gobject/chapter-gtype.html
    share/gtk-doc/html/gobject/chapter-intro.html
    share/gtk-doc/html/gobject/chapter-signal.html
    share/gtk-doc/html/gobject/glib-genmarshal.html
    share/gtk-doc/html/gobject/glib-mkenums.html
    share/gtk-doc/html/gobject/glue.png
    share/gtk-doc/html/gobject/gobject-Boxed-Types.html
    share/gtk-doc/html/gobject/gobject-Closures.html
    share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html
    share/gtk-doc/html/gobject/gobject-GParamSpec.html
    share/gtk-doc/html/gobject/gobject-Generic-values.html
    share/gtk-doc/html/gobject/gobject-Signals.html
    share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html
    share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html
    share/gtk-doc/html/gobject/gobject-Type-Information.html
    share/gtk-doc/html/gobject/gobject-Value-arrays.html
    share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html
    share/gtk-doc/html/gobject/gobject-memory.html
    share/gtk-doc/html/gobject/gobject-properties.html
    share/gtk-doc/html/gobject/gobject-query.html
    share/gtk-doc/html/gobject/gobject.devhelp
    share/gtk-doc/html/gobject/gobject.devhelp2
    share/gtk-doc/html/gobject/gtype-conventions.html
    share/gtk-doc/html/gobject/gtype-instantiable-classed.html
    share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html
    share/gtk-doc/html/gobject/gtype-non-instantiable.html
    share/gtk-doc/html/gobject/home.png
    share/gtk-doc/html/gobject/howto-gobject-chainup.html
    share/gtk-doc/html/gobject/howto-gobject-code.html
    share/gtk-doc/html/gobject/howto-gobject-construction.html
    share/gtk-doc/html/gobject/howto-gobject-destruction.html
    share/gtk-doc/html/gobject/howto-gobject-methods.html
    share/gtk-doc/html/gobject/howto-gobject.html
    share/gtk-doc/html/gobject/howto-interface-implement.html
    share/gtk-doc/html/gobject/howto-interface-properties.html
    share/gtk-doc/html/gobject/howto-interface.html
    share/gtk-doc/html/gobject/howto-signals.html
    share/gtk-doc/html/gobject/index.html
    share/gtk-doc/html/gobject/index.sgml
    share/gtk-doc/html/gobject/ix01.html
    share/gtk-doc/html/gobject/ix02.html
    share/gtk-doc/html/gobject/ix03.html
    share/gtk-doc/html/gobject/ix04.html
    share/gtk-doc/html/gobject/ix05.html
    share/gtk-doc/html/gobject/ix06.html
    share/gtk-doc/html/gobject/ix07.html
    share/gtk-doc/html/gobject/ix08.html
    share/gtk-doc/html/gobject/ix09.html
    share/gtk-doc/html/gobject/ix10.html
    share/gtk-doc/html/gobject/left.png
    share/gtk-doc/html/gobject/pr01.html
    share/gtk-doc/html/gobject/pt01.html
    share/gtk-doc/html/gobject/pt02.html
    share/gtk-doc/html/gobject/pt03.html
    share/gtk-doc/html/gobject/right.png
    share/gtk-doc/html/gobject/rn01.html
    share/gtk-doc/html/gobject/rn02.html
    share/gtk-doc/html/gobject/signal.html
    share/gtk-doc/html/gobject/style.css
    share/gtk-doc/html/gobject/tools-ginspector.html
    share/gtk-doc/html/gobject/tools-gob.html
    share/gtk-doc/html/gobject/tools-gtkdoc.html
    share/gtk-doc/html/gobject/tools-refdb.html
    share/gtk-doc/html/gobject/tools-vala.html
    share/gtk-doc/html/gobject/up.png
    share/gtk-doc/html/gtk/AbstractObjects.html
    share/gtk-doc/html/gtk/Actions.html
    share/gtk-doc/html/gtk/Builder.html
    share/gtk-doc/html/gtk/ButtonWidgets.html
    share/gtk-doc/html/gtk/DeprecatedObjects.html
    share/gtk-doc/html/gtk/DisplayWidgets.html
    share/gtk-doc/html/gtk/GtkAboutDialog.html
    share/gtk-doc/html/gtk/GtkAccelLabel.html
    share/gtk-doc/html/gtk/GtkAccessible.html
    share/gtk-doc/html/gtk/GtkAction.html
    share/gtk-doc/html/gtk/GtkActionGroup.html
    share/gtk-doc/html/gtk/GtkActivatable.html
    share/gtk-doc/html/gtk/GtkAdjustment.html
    share/gtk-doc/html/gtk/GtkAlignment.html
    share/gtk-doc/html/gtk/GtkArrow.html
    share/gtk-doc/html/gtk/GtkAspectFrame.html
    share/gtk-doc/html/gtk/GtkAssistant.html
    share/gtk-doc/html/gtk/GtkBin.html
    share/gtk-doc/html/gtk/GtkBox.html
    share/gtk-doc/html/gtk/GtkBuilder.html
    share/gtk-doc/html/gtk/GtkButton.html
    share/gtk-doc/html/gtk/GtkButtonBox.html
    share/gtk-doc/html/gtk/GtkCList.html
    share/gtk-doc/html/gtk/GtkCTree.html
    share/gtk-doc/html/gtk/GtkCalendar.html
    share/gtk-doc/html/gtk/GtkCellEditable.html
    share/gtk-doc/html/gtk/GtkCellLayout.html
    share/gtk-doc/html/gtk/GtkCellRenderer.html
    share/gtk-doc/html/gtk/GtkCellRendererAccel.html
    share/gtk-doc/html/gtk/GtkCellRendererCombo.html
    share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html
    share/gtk-doc/html/gtk/GtkCellRendererProgress.html
    share/gtk-doc/html/gtk/GtkCellRendererSpin.html
    share/gtk-doc/html/gtk/GtkCellRendererText.html
    share/gtk-doc/html/gtk/GtkCellRendererToggle.html
    share/gtk-doc/html/gtk/GtkCellView.html
    share/gtk-doc/html/gtk/GtkCheckButton.html
    share/gtk-doc/html/gtk/GtkCheckMenuItem.html
    share/gtk-doc/html/gtk/GtkColorButton.html
    share/gtk-doc/html/gtk/GtkColorSelection.html
    share/gtk-doc/html/gtk/GtkColorSelectionDialog.html
    share/gtk-doc/html/gtk/GtkCombo.html
    share/gtk-doc/html/gtk/GtkComboBox.html
    share/gtk-doc/html/gtk/GtkComboBoxEntry.html
    share/gtk-doc/html/gtk/GtkContainer.html
    share/gtk-doc/html/gtk/GtkCurve.html
    share/gtk-doc/html/gtk/GtkDialog.html
    share/gtk-doc/html/gtk/GtkDrawingArea.html
    share/gtk-doc/html/gtk/GtkEditable.html
    share/gtk-doc/html/gtk/GtkEntry.html
    share/gtk-doc/html/gtk/GtkEntryCompletion.html
    share/gtk-doc/html/gtk/GtkEventBox.html
    share/gtk-doc/html/gtk/GtkExpander.html
    share/gtk-doc/html/gtk/GtkFileChooser.html
    share/gtk-doc/html/gtk/GtkFileChooserButton.html
    share/gtk-doc/html/gtk/GtkFileChooserDialog.html
    share/gtk-doc/html/gtk/GtkFileChooserWidget.html
    share/gtk-doc/html/gtk/GtkFileSelection.html
    share/gtk-doc/html/gtk/GtkFixed.html
    share/gtk-doc/html/gtk/GtkFontButton.html
    share/gtk-doc/html/gtk/GtkFontSelection.html
    share/gtk-doc/html/gtk/GtkFontSelectionDialog.html
    share/gtk-doc/html/gtk/GtkFrame.html
    share/gtk-doc/html/gtk/GtkGammaCurve.html
    share/gtk-doc/html/gtk/GtkHBox.html
    share/gtk-doc/html/gtk/GtkHButtonBox.html
    share/gtk-doc/html/gtk/GtkHPaned.html
    share/gtk-doc/html/gtk/GtkHRuler.html
    share/gtk-doc/html/gtk/GtkHSV.html
    share/gtk-doc/html/gtk/GtkHScale.html
    share/gtk-doc/html/gtk/GtkHScrollbar.html
    share/gtk-doc/html/gtk/GtkHSeparator.html
    share/gtk-doc/html/gtk/GtkHandleBox.html
    share/gtk-doc/html/gtk/GtkIMContext.html
    share/gtk-doc/html/gtk/GtkIMContextSimple.html
    share/gtk-doc/html/gtk/GtkIMMulticontext.html
    share/gtk-doc/html/gtk/GtkIconTheme.html
    share/gtk-doc/html/gtk/GtkIconView.html
    share/gtk-doc/html/gtk/GtkImage.html
    share/gtk-doc/html/gtk/GtkImageMenuItem.html
    share/gtk-doc/html/gtk/GtkInputDialog.html
    share/gtk-doc/html/gtk/GtkInvisible.html
    share/gtk-doc/html/gtk/GtkItem.html
    share/gtk-doc/html/gtk/GtkItemFactory.html
    share/gtk-doc/html/gtk/GtkLabel.html
    share/gtk-doc/html/gtk/GtkLayout.html
    share/gtk-doc/html/gtk/GtkLinkButton.html
    share/gtk-doc/html/gtk/GtkList.html
    share/gtk-doc/html/gtk/GtkListItem.html
    share/gtk-doc/html/gtk/GtkListStore.html
    share/gtk-doc/html/gtk/GtkMenu.html
    share/gtk-doc/html/gtk/GtkMenuBar.html
    share/gtk-doc/html/gtk/GtkMenuItem.html
    share/gtk-doc/html/gtk/GtkMenuShell.html
    share/gtk-doc/html/gtk/GtkMenuToolButton.html
    share/gtk-doc/html/gtk/GtkMessageDialog.html
    share/gtk-doc/html/gtk/GtkMisc.html
    share/gtk-doc/html/gtk/GtkNotebook.html
    share/gtk-doc/html/gtk/GtkObject.html
    share/gtk-doc/html/gtk/GtkOldEditable.html
    share/gtk-doc/html/gtk/GtkOptionMenu.html
    share/gtk-doc/html/gtk/GtkPageSetup.html
    share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html
    share/gtk-doc/html/gtk/GtkPaned.html
    share/gtk-doc/html/gtk/GtkPixmap.html
    share/gtk-doc/html/gtk/GtkPlug.html
    share/gtk-doc/html/gtk/GtkPreview.html
    share/gtk-doc/html/gtk/GtkPrintContext.html
    share/gtk-doc/html/gtk/GtkPrintJob.html
    share/gtk-doc/html/gtk/GtkPrintSettings.html
    share/gtk-doc/html/gtk/GtkPrintUnixDialog.html
    share/gtk-doc/html/gtk/GtkPrinter.html
    share/gtk-doc/html/gtk/GtkProgress.html
    share/gtk-doc/html/gtk/GtkProgressBar.html
    share/gtk-doc/html/gtk/GtkRadioAction.html
    share/gtk-doc/html/gtk/GtkRadioButton.html
    share/gtk-doc/html/gtk/GtkRadioMenuItem.html
    share/gtk-doc/html/gtk/GtkRadioToolButton.html
    share/gtk-doc/html/gtk/GtkRange.html
    share/gtk-doc/html/gtk/GtkRecentAction.html
    share/gtk-doc/html/gtk/GtkRecentChooser.html
    share/gtk-doc/html/gtk/GtkRecentChooserDialog.html
    share/gtk-doc/html/gtk/GtkRecentChooserMenu.html
    share/gtk-doc/html/gtk/GtkRecentChooserWidget.html
    share/gtk-doc/html/gtk/GtkRecentFilter.html
    share/gtk-doc/html/gtk/GtkRecentManager.html
    share/gtk-doc/html/gtk/GtkRuler.html
    share/gtk-doc/html/gtk/GtkScale.html
    share/gtk-doc/html/gtk/GtkScaleButton.html
    share/gtk-doc/html/gtk/GtkScrollbar.html
    share/gtk-doc/html/gtk/GtkScrolledWindow.html
    share/gtk-doc/html/gtk/GtkSeparator.html
    share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html
    share/gtk-doc/html/gtk/GtkSeparatorToolItem.html
    share/gtk-doc/html/gtk/GtkSettings.html
    share/gtk-doc/html/gtk/GtkSizeGroup.html
    share/gtk-doc/html/gtk/GtkSocket.html
    share/gtk-doc/html/gtk/GtkSpinButton.html
    share/gtk-doc/html/gtk/GtkStatusIcon.html
    share/gtk-doc/html/gtk/GtkStatusbar.html
    share/gtk-doc/html/gtk/GtkStyle.html
    share/gtk-doc/html/gtk/GtkTable.html
    share/gtk-doc/html/gtk/GtkTearoffMenuItem.html
    share/gtk-doc/html/gtk/GtkText.html
    share/gtk-doc/html/gtk/GtkTextBuffer.html
    share/gtk-doc/html/gtk/GtkTextMark.html
    share/gtk-doc/html/gtk/GtkTextTag.html
    share/gtk-doc/html/gtk/GtkTextTagTable.html
    share/gtk-doc/html/gtk/GtkTextView.html
    share/gtk-doc/html/gtk/GtkTipsQuery.html
    share/gtk-doc/html/gtk/GtkToggleAction.html
    share/gtk-doc/html/gtk/GtkToggleButton.html
    share/gtk-doc/html/gtk/GtkToggleToolButton.html
    share/gtk-doc/html/gtk/GtkToolButton.html
    share/gtk-doc/html/gtk/GtkToolItem.html
    share/gtk-doc/html/gtk/GtkToolShell.html
    share/gtk-doc/html/gtk/GtkToolbar.html
    share/gtk-doc/html/gtk/GtkTooltip.html
    share/gtk-doc/html/gtk/GtkTooltips.html
    share/gtk-doc/html/gtk/GtkTree.html
    share/gtk-doc/html/gtk/GtkTreeItem.html
    share/gtk-doc/html/gtk/GtkTreeModel.html
    share/gtk-doc/html/gtk/GtkTreeModelFilter.html
    share/gtk-doc/html/gtk/GtkTreeModelSort.html
    share/gtk-doc/html/gtk/GtkTreeSelection.html
    share/gtk-doc/html/gtk/GtkTreeSortable.html
    share/gtk-doc/html/gtk/GtkTreeStore.html
    share/gtk-doc/html/gtk/GtkTreeView.html
    share/gtk-doc/html/gtk/GtkTreeViewColumn.html
    share/gtk-doc/html/gtk/GtkUIManager.html
    share/gtk-doc/html/gtk/GtkVBox.html
    share/gtk-doc/html/gtk/GtkVButtonBox.html
    share/gtk-doc/html/gtk/GtkVPaned.html
    share/gtk-doc/html/gtk/GtkVRuler.html
    share/gtk-doc/html/gtk/GtkVScale.html
    share/gtk-doc/html/gtk/GtkVScrollbar.html
    share/gtk-doc/html/gtk/GtkVSeparator.html
    share/gtk-doc/html/gtk/GtkViewport.html
    share/gtk-doc/html/gtk/GtkVolumeButton.html
    share/gtk-doc/html/gtk/GtkWidget.html
    share/gtk-doc/html/gtk/GtkWindow.html
    share/gtk-doc/html/gtk/GtkWindowGroup.html
    share/gtk-doc/html/gtk/LayoutContainers.html
    share/gtk-doc/html/gtk/MenusAndCombos.html
    share/gtk-doc/html/gtk/MiscObjects.html
    share/gtk-doc/html/gtk/NumericEntry.html
    share/gtk-doc/html/gtk/Ornaments.html
    share/gtk-doc/html/gtk/PlugSocket.html
    share/gtk-doc/html/gtk/Printing.html
    share/gtk-doc/html/gtk/RecentDocuments.html
    share/gtk-doc/html/gtk/ScrollingWidgets.html
    share/gtk-doc/html/gtk/SelectorWidgets.html
    share/gtk-doc/html/gtk/SpecialObjects.html
    share/gtk-doc/html/gtk/TextWidget.html
    share/gtk-doc/html/gtk/TextWidgetObjects.html
    share/gtk-doc/html/gtk/TreeWidget.html
    share/gtk-doc/html/gtk/TreeWidgetObjects.html
    share/gtk-doc/html/gtk/WindowWidgets.html
    share/gtk-doc/html/gtk/aboutdialog.png
    share/gtk-doc/html/gtk/accel-label.png
    share/gtk-doc/html/gtk/api-index-2-10.html
    share/gtk-doc/html/gtk/api-index-2-12.html
    share/gtk-doc/html/gtk/api-index-2-14.html
    share/gtk-doc/html/gtk/api-index-2-16.html
    share/gtk-doc/html/gtk/api-index-2-2.html
    share/gtk-doc/html/gtk/api-index-2-4.html
    share/gtk-doc/html/gtk/api-index-2-6.html
    share/gtk-doc/html/gtk/api-index-2-8.html
    share/gtk-doc/html/gtk/api-index-deprecated.html
    share/gtk-doc/html/gtk/api-index-full.html
    share/gtk-doc/html/gtk/assistant.png
    share/gtk-doc/html/gtk/button.png
    share/gtk-doc/html/gtk/ch01.html
    share/gtk-doc/html/gtk/ch02.html
    share/gtk-doc/html/gtk/chap-drawing-model.html
    share/gtk-doc/html/gtk/check-button.png
    share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html
    share/gtk-doc/html/gtk/checklist-modifiers.html
    share/gtk-doc/html/gtk/checklist-named-icons.html
    share/gtk-doc/html/gtk/color-button.png
    share/gtk-doc/html/gtk/colorsel.png
    share/gtk-doc/html/gtk/combo-box-entry.png
    share/gtk-doc/html/gtk/combo-box.png
    share/gtk-doc/html/gtk/decorating-the-assistant-pages.html
    share/gtk-doc/html/gtk/entry.png
    share/gtk-doc/html/gtk/figure-hierarchical-drawing.png
    share/gtk-doc/html/gtk/figure-windowed-label.png
    share/gtk-doc/html/gtk/file-button.png
    share/gtk-doc/html/gtk/filechooser.png
    share/gtk-doc/html/gtk/font-button.png
    share/gtk-doc/html/gtk/fontsel.png
    share/gtk-doc/html/gtk/frame.png
    share/gtk-doc/html/gtk/glossary.html
    share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html
    share/gtk-doc/html/gtk/gtk-Bindings.html
    share/gtk-doc/html/gtk/gtk-Clipboards.html
    share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html
    share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html
    share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html
    share/gtk-doc/html/gtk/gtk-General.html
    share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html
    share/gtk-doc/html/gtk/gtk-GtkPaperSize.html
    share/gtk-doc/html/gtk/gtk-GtkTextIter.html
    share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html
    share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html
    share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html
    share/gtk-doc/html/gtk/gtk-Orientable.html
    share/gtk-doc/html/gtk/gtk-Resource-Files.html
    share/gtk-doc/html/gtk/gtk-Selections.html
    share/gtk-doc/html/gtk/gtk-Signals.html
    share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html
    share/gtk-doc/html/gtk/gtk-Stock-Items.html
    share/gtk-doc/html/gtk/gtk-Testing.html
    share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html
    share/gtk-doc/html/gtk/gtk-Types.html
    share/gtk-doc/html/gtk/gtk-about.png
    share/gtk-doc/html/gtk/gtk-add.png
    share/gtk-doc/html/gtk/gtk-apply.png
    share/gtk-doc/html/gtk/gtk-bold.png
    share/gtk-doc/html/gtk/gtk-builder-convert.html
    share/gtk-doc/html/gtk/gtk-building.html
    share/gtk-doc/html/gtk/gtk-cancel.png
    share/gtk-doc/html/gtk/gtk-caps-lock-warning.png
    share/gtk-doc/html/gtk/gtk-cdrom.png
    share/gtk-doc/html/gtk/gtk-changes-1-2.html
    share/gtk-doc/html/gtk/gtk-changes-2-0.html
    share/gtk-doc/html/gtk/gtk-clear.png
    share/gtk-doc/html/gtk/gtk-close.png
    share/gtk-doc/html/gtk/gtk-color-picker.png
    share/gtk-doc/html/gtk/gtk-compiling.html
    share/gtk-doc/html/gtk/gtk-connect.png
    share/gtk-doc/html/gtk/gtk-convert.png
    share/gtk-doc/html/gtk/gtk-copy.png
    share/gtk-doc/html/gtk/gtk-cut.png
    share/gtk-doc/html/gtk/gtk-delete.png
    share/gtk-doc/html/gtk/gtk-dialog-authentication.png
    share/gtk-doc/html/gtk/gtk-dialog-error.png
    share/gtk-doc/html/gtk/gtk-dialog-info.png
    share/gtk-doc/html/gtk/gtk-dialog-question.png
    share/gtk-doc/html/gtk/gtk-dialog-warning.png
    share/gtk-doc/html/gtk/gtk-directfb.html
    share/gtk-doc/html/gtk/gtk-directory.png
    share/gtk-doc/html/gtk/gtk-disconnect.png
    share/gtk-doc/html/gtk/gtk-dnd-multiple.png
    share/gtk-doc/html/gtk/gtk-dnd.png
    share/gtk-doc/html/gtk/gtk-edit.png
    share/gtk-doc/html/gtk/gtk-execute.png
    share/gtk-doc/html/gtk/gtk-file.png
    share/gtk-doc/html/gtk/gtk-find-and-replace.png
    share/gtk-doc/html/gtk/gtk-find.png
    share/gtk-doc/html/gtk/gtk-floppy.png
    share/gtk-doc/html/gtk/gtk-font.png
    share/gtk-doc/html/gtk/gtk-fullscreen.png
    share/gtk-doc/html/gtk/gtk-go-back-ltr.png
    share/gtk-doc/html/gtk/gtk-go-back-rtl.png
    share/gtk-doc/html/gtk/gtk-go-down.png
    share/gtk-doc/html/gtk/gtk-go-forward-ltr.png
    share/gtk-doc/html/gtk/gtk-go-forward-rtl.png
    share/gtk-doc/html/gtk/gtk-go-up.png
    share/gtk-doc/html/gtk/gtk-goto-bottom.png
    share/gtk-doc/html/gtk/gtk-goto-first-ltr.png
    share/gtk-doc/html/gtk/gtk-goto-first-rtl.png
    share/gtk-doc/html/gtk/gtk-goto-last-ltr.png
    share/gtk-doc/html/gtk/gtk-goto-last-rtl.png
    share/gtk-doc/html/gtk/gtk-goto-top.png
    share/gtk-doc/html/gtk/gtk-gtkbuildable.html
    share/gtk-doc/html/gtk/gtk-gtkfilefilter.html
    share/gtk-doc/html/gtk/gtk-harddisk.png
    share/gtk-doc/html/gtk/gtk-help.png
    share/gtk-doc/html/gtk/gtk-home.png
    share/gtk-doc/html/gtk/gtk-indent-ltr.png
    share/gtk-doc/html/gtk/gtk-indent-rtl.png
    share/gtk-doc/html/gtk/gtk-index.png
    share/gtk-doc/html/gtk/gtk-info.png
    share/gtk-doc/html/gtk/gtk-italic.png
    share/gtk-doc/html/gtk/gtk-jump-to-ltr.png
    share/gtk-doc/html/gtk/gtk-jump-to-rtl.png
    share/gtk-doc/html/gtk/gtk-justify-center.png
    share/gtk-doc/html/gtk/gtk-justify-fill.png
    share/gtk-doc/html/gtk/gtk-justify-left.png
    share/gtk-doc/html/gtk/gtk-justify-right.png
    share/gtk-doc/html/gtk/gtk-leave-fullscreen.png
    share/gtk-doc/html/gtk/gtk-media-forward-ltr.png
    share/gtk-doc/html/gtk/gtk-media-forward-rtl.png
    share/gtk-doc/html/gtk/gtk-media-next-ltr.png
    share/gtk-doc/html/gtk/gtk-media-next-rtl.png
    share/gtk-doc/html/gtk/gtk-media-pause.png
    share/gtk-doc/html/gtk/gtk-media-play-ltr.png
    share/gtk-doc/html/gtk/gtk-media-play-rtl.png
    share/gtk-doc/html/gtk/gtk-media-previous-ltr.png
    share/gtk-doc/html/gtk/gtk-media-previous-rtl.png
    share/gtk-doc/html/gtk/gtk-media-record.png
    share/gtk-doc/html/gtk/gtk-media-rewind-ltr.png
    share/gtk-doc/html/gtk/gtk-media-rewind-rtl.png
    share/gtk-doc/html/gtk/gtk-media-stop.png
    share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html
    share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html
    share/gtk-doc/html/gtk/gtk-migrating-checklist.html
    share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html
    share/gtk-doc/html/gtk/gtk-migrating-tooltips.html
    share/gtk-doc/html/gtk/gtk-missing-image.png
    share/gtk-doc/html/gtk/gtk-network.png
    share/gtk-doc/html/gtk/gtk-new.png
    share/gtk-doc/html/gtk/gtk-no.png
    share/gtk-doc/html/gtk/gtk-ok.png
    share/gtk-doc/html/gtk/gtk-open.png
    share/gtk-doc/html/gtk/gtk-orientation-landscape.png
    share/gtk-doc/html/gtk/gtk-orientation-portrait.png
    share/gtk-doc/html/gtk/gtk-orientation-reverse-landscape.png
    share/gtk-doc/html/gtk/gtk-orientation-reverse-portrait.png
    share/gtk-doc/html/gtk/gtk-osx.html
    share/gtk-doc/html/gtk/gtk-paste.png
    share/gtk-doc/html/gtk/gtk-preferences.png
    share/gtk-doc/html/gtk/gtk-print-error.png
    share/gtk-doc/html/gtk/gtk-print-paused.png
    share/gtk-doc/html/gtk/gtk-print-preview.png
    share/gtk-doc/html/gtk/gtk-print-report.png
    share/gtk-doc/html/gtk/gtk-print-warning.png
    share/gtk-doc/html/gtk/gtk-print.png
    share/gtk-doc/html/gtk/gtk-properties.png
    share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html
    share/gtk-doc/html/gtk/gtk-question-index.html
    share/gtk-doc/html/gtk/gtk-quit.png
    share/gtk-doc/html/gtk/gtk-redo-ltr.png
    share/gtk-doc/html/gtk/gtk-redo-rtl.png
    share/gtk-doc/html/gtk/gtk-refresh.png
    share/gtk-doc/html/gtk/gtk-remove.png
    share/gtk-doc/html/gtk/gtk-resources.html
    share/gtk-doc/html/gtk/gtk-revert-to-saved-ltr.png
    share/gtk-doc/html/gtk/gtk-revert-to-saved-rtl.png
    share/gtk-doc/html/gtk/gtk-running.html
    share/gtk-doc/html/gtk/gtk-save-as.png
    share/gtk-doc/html/gtk/gtk-save.png
    share/gtk-doc/html/gtk/gtk-select-all.png
    share/gtk-doc/html/gtk/gtk-select-color.png
    share/gtk-doc/html/gtk/gtk-sort-ascending.png
    share/gtk-doc/html/gtk/gtk-sort-descending.png
    share/gtk-doc/html/gtk/gtk-spell-check.png
    share/gtk-doc/html/gtk/gtk-stop.png
    share/gtk-doc/html/gtk/gtk-strikethrough.png
    share/gtk-doc/html/gtk/gtk-undelete-ltr.png
    share/gtk-doc/html/gtk/gtk-undelete-rtl.png
    share/gtk-doc/html/gtk/gtk-underline.png
    share/gtk-doc/html/gtk/gtk-undo-ltr.png
    share/gtk-doc/html/gtk/gtk-undo-rtl.png
    share/gtk-doc/html/gtk/gtk-unindent-ltr.png
    share/gtk-doc/html/gtk/gtk-unindent-rtl.png
    share/gtk-doc/html/gtk/gtk-update-icon-cache.html
    share/gtk-doc/html/gtk/gtk-windows.html
    share/gtk-doc/html/gtk/gtk-x11.html
    share/gtk-doc/html/gtk/gtk-yes.png
    share/gtk-doc/html/gtk/gtk-zoom-100.png
    share/gtk-doc/html/gtk/gtk-zoom-fit.png
    share/gtk-doc/html/gtk/gtk-zoom-in.png
    share/gtk-doc/html/gtk/gtk-zoom-out.png
    share/gtk-doc/html/gtk/gtk.devhelp
    share/gtk-doc/html/gtk/gtk.devhelp2
    share/gtk-doc/html/gtk/gtk.html
    share/gtk-doc/html/gtk/gtkbase.html
    share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html
    share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html
    share/gtk-doc/html/gtk/gtkfilechooser-new-features.html
    share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html
    share/gtk-doc/html/gtk/gtkobjects.html
    share/gtk-doc/html/gtk/gtkrecent-advanced.html
    share/gtk-doc/html/gtk/gtkrecent-chooser.html
    share/gtk-doc/html/gtk/home.png
    share/gtk-doc/html/gtk/icon-view.png
    share/gtk-doc/html/gtk/image.png
    share/gtk-doc/html/gtk/index.html
    share/gtk-doc/html/gtk/index.sgml
    share/gtk-doc/html/gtk/label.png
    share/gtk-doc/html/gtk/layout-btlr.png
    share/gtk-doc/html/gtk/layout-btrl.png
    share/gtk-doc/html/gtk/layout-lrbt.png
    share/gtk-doc/html/gtk/layout-lrtb.png
    share/gtk-doc/html/gtk/layout-rlbt.png
    share/gtk-doc/html/gtk/layout-rltb.png
    share/gtk-doc/html/gtk/layout-tblr.png
    share/gtk-doc/html/gtk/layout-tbrl.png
    share/gtk-doc/html/gtk/left.png
    share/gtk-doc/html/gtk/link-button.png
    share/gtk-doc/html/gtk/list-and-tree.png
    share/gtk-doc/html/gtk/menubar.png
    share/gtk-doc/html/gtk/messagedialog.png
    share/gtk-doc/html/gtk/migrating-GtkCombo.html
    share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html
    share/gtk-doc/html/gtk/migrating.html
    share/gtk-doc/html/gtk/multiline-text.png
    share/gtk-doc/html/gtk/new-features-GtkComboBox.html
    share/gtk-doc/html/gtk/notebook.png
    share/gtk-doc/html/gtk/pagesetupdialog.png
    share/gtk-doc/html/gtk/panes.png
    share/gtk-doc/html/gtk/printdialog.png
    share/gtk-doc/html/gtk/progressbar.png
    share/gtk-doc/html/gtk/pt05.html
    share/gtk-doc/html/gtk/radio-group.png
    share/gtk-doc/html/gtk/recentchooserdialog.png
    share/gtk-doc/html/gtk/right.png
    share/gtk-doc/html/gtk/scales.png
    share/gtk-doc/html/gtk/scrolledwindow.png
    share/gtk-doc/html/gtk/separator.png
    share/gtk-doc/html/gtk/setting-the-page-flow.html
    share/gtk-doc/html/gtk/spinbutton.png
    share/gtk-doc/html/gtk/statusbar.png
    share/gtk-doc/html/gtk/style.css
    share/gtk-doc/html/gtk/toggle-button.png
    share/gtk-doc/html/gtk/toolbar.png
    share/gtk-doc/html/gtk/tree-view-coordinates.png
    share/gtk-doc/html/gtk/ui-manager.html
    share/gtk-doc/html/gtk/up.png
    share/gtk-doc/html/gtk/volumebutton.png
    share/gtk-doc/html/gtk/window.png
    share/gtk-doc/html/pango/PangoEngineLang.html
    share/gtk-doc/html/pango/PangoEngineShape.html
    share/gtk-doc/html/pango/PangoFcDecoder.html
    share/gtk-doc/html/pango/PangoFcFont.html
    share/gtk-doc/html/pango/PangoFcFontMap.html
    share/gtk-doc/html/pango/PangoMarkupFormat.html
    share/gtk-doc/html/pango/PangoRenderer.html
    share/gtk-doc/html/pango/home.png
    share/gtk-doc/html/pango/index-1.10.html
    share/gtk-doc/html/pango/index-1.12.html
    share/gtk-doc/html/pango/index-1.14.html
    share/gtk-doc/html/pango/index-1.16.html
    share/gtk-doc/html/pango/index-1.18.html
    share/gtk-doc/html/pango/index-1.2.html
    share/gtk-doc/html/pango/index-1.20.html
    share/gtk-doc/html/pango/index-1.22.html
    share/gtk-doc/html/pango/index-1.4.html
    share/gtk-doc/html/pango/index-1.6.html
    share/gtk-doc/html/pango/index-1.8.html
    share/gtk-doc/html/pango/index-all.html
    share/gtk-doc/html/pango/index-deprecated.html
    share/gtk-doc/html/pango/index.html
    share/gtk-doc/html/pango/index.sgml
    share/gtk-doc/html/pango/layout.gif
    share/gtk-doc/html/pango/left.png
    share/gtk-doc/html/pango/lowlevel.html
    share/gtk-doc/html/pango/pango-ATSUI-Fonts.html
    share/gtk-doc/html/pango/pango-Bidirectional-Text.html
    share/gtk-doc/html/pango/pango-Cairo-Rendering.html
    share/gtk-doc/html/pango/pango-Coverage-Maps.html
    share/gtk-doc/html/pango/pango-Engines.html
    share/gtk-doc/html/pango/pango-Fonts.html
    share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html
    share/gtk-doc/html/pango/pango-Glyph-Storage.html
    share/gtk-doc/html/pango/pango-Layout-Objects.html
    share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html
    share/gtk-doc/html/pango/pango-Modules.html
    share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html
    share/gtk-doc/html/pango/pango-Scripts-and-Languages.html
    share/gtk-doc/html/pango/pango-Tab-Stops.html
    share/gtk-doc/html/pango/pango-Text-Attributes.html
    share/gtk-doc/html/pango/pango-Text-Processing.html
    share/gtk-doc/html/pango/pango-Version-Checking.html
    share/gtk-doc/html/pango/pango-Vertical-Text.html
    share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html
    share/gtk-doc/html/pango/pango-X-Fonts-and-Rendering.html
    share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html
    share/gtk-doc/html/pango/pango-hierarchy.html
    share/gtk-doc/html/pango/pango-querymodules.html
    share/gtk-doc/html/pango/pango.devhelp
    share/gtk-doc/html/pango/pango.devhelp2
    share/gtk-doc/html/pango/pango.html
    share/gtk-doc/html/pango/rendering.html
    share/gtk-doc/html/pango/right.png
    share/gtk-doc/html/pango/rotated-text.png
    share/gtk-doc/html/pango/style.css
    share/gtk-doc/html/pango/tools.html
    share/gtk-doc/html/pango/up.png

    I will unpack this package in my Linux system and try again to cross-compile GTK applications.

    About This Blog

    KBlog logo This blog seeks to share useful information on hottest movies available on the Internet. Thanks for visiting the blog and posting your comments.

    © Contents by KBlog

    © Blogger template by Emporium Digital 2008

    Followers

    Total Pageviews

    icon
    Powered By Blogger