Friday, August 28, 2009

Matching an OEM certificate (*.xrm-ms) with a SLIC 2.x table

Here I write how to verify a Windows OEM certificate (*.xrm-ms) against the SLIC 2.x signature embedded in the BIOS ACPI table. Part of the information herein is taken from this thread in My Digital Life forums. If your BIOS has embedded SLIC 2.x signature in its ACPI table, view it with SLIC Dump ToolKit.



SLIC Dump Toolkit V2.0


Open your OEM certificate (*.xrm-ms) in your favorite text editor, for example, WordPad. Otherwise, double-click on the OEM certificate and it will be displayed in Internet Explorer.



Windows OEM certificate in WordPad


Find the line that contains a long string beginning with kgAAAAAAA. Highlight the part from kgAAAAAAA to the next equal sign =. Copy the highlighted section.
Find a way to convert the string from a Base 64 format to a binary format. I used an online base64 convertor at motobit.com which provides a way to save to a binary file. You can search Yahoo! using the search keywords “base64 binary converter” to find some useful online base64 converters.



Open the resulting binary file in a Hex editor, for example, XVI32. Compare the SLIC content (in SLIC dump toolkit) with the binary OEM certificate (in XVI32).



Windows OEM certificate data in XVI32 hex editor


To learn how to compare the SLIC data with OEM certificate, read this forum thread.



Sample OEM Certificate / SLIC Matching





BLUE - OEM ID

RED - RSA module

ORANGE - RSA public exponent

Always: 01 00 01 00

GREEN - Windows marker version

Always: 00 00 20 00

PURPLE - Size of the OEM Certificate's licensing data

Always: 92 00 00 00 (146 bytes)





Thursday, August 27, 2009

Notes on Toshiba Mini NB205

I recently bought a netbook made by Toshiba. Its model is NB205 black. So far I love this stylish notebook. It is light so it doesn't weigh heavily on my shoulder when I carry it in my backpack to school. It has a very long battery life (almost 8 hours) and it's surprisingly powerful enough. I'll keep notes about Toshiba Mini NB205 on this post. I will update it with useful information about Toshiba NB205.


Toshiba Mini Netbook NB205

Notes on Toshia NB205 Hardware



IDE/SATA Driver for Windows XP and Vista


I tried to install Windows XP and Vista on my Toshiba netbook. XP/Vista installer crashed many times unless I loaded Intel AHCI driver in the beginning of the installation. The netbook's 160GB hard drive is connected to Intel 82801GBM Serial ATA controller inside the netbook. I downloaded the text-mode driver (f6flpy3289.zip) from Intel support site. I unpacked driver package onto a USB floppy. The needed files are as follows:

iaahci.cat
iaahci.inf
iastor.cat
iastor.inf
iastor.sys
license.txt
readme.txt
txtsetup.oem

Then, I connected the USB floppy to my netbook before booting with XP/Vista installation CD/DVD in my USB DVD-ROM. I pressed F6 right after the XP installation started. A few minutes later, I was asked to choose the right driver from a list of drivers. Only one choice works; that's Intel(R) ICH7M/MDH SATA AHCI Controller.


After Windows XP is successfully installed, install the Intel Matrix Storage Manager (IATA89CD.exe.)



Other Drivers


The Toshiba support site offers many drivers and software for Toshiba Mini NB205. Download the following drivers when reinstalling Windows XP.




Applets for Toshiba NB205


TouchPad Driver


I downloaded Alps TouchPad Driver 7.4.2002 for Vista from SoftPedia. I extracted Vi32 folder from the package using 7zip and installed the driver by running DPinst.exe.



Chicony Camera Assistant Software for Toshiba


I downloaded the camera software from Toshiba. This software also works on Windows Vista and Windows 7.



HDD Protection Software for Windows XP/Vista/7


Toshiba Mini NB205 has a vibration sensor for safe-guarding the hard drive. HDD protection software uses a reading from the vibration sensor and temporarily put the drive in halt when significant vibration is detected. If you reinstall XP on Toshiba NB205, download the HDD protection software from Toshiba and install it. The software also installs the driver for HDD vibration sensor.



Toshiba NB205 Has SLIC 2.1 for Windows 7


Using SLIC Dump ToolKit V2.3, I learned that Toshiba Mini NB205 contains SLIC 2.1 in its BIOS ACPI table. That means an OEM version of Windows 7 can be installed on NB205 and activated with the right OEM certificate and key.


SLIC Dump Toolkit V2.0

Related Links


Sunday, August 23, 2009

MinGW: Compiling LibReGIF

LibReGIF is an open-source library that reads GIF images. Download the libregif source and compile it as follows:


tar xzvf libregif-4.1.7.tar.gz

cd libregif-4.1.7/

./configure --prefix=/mingw

make

cp libregif.a /mingw/lib

cp libregif.a /mingw/lib/libgif.a

cp libregif.a /mingw/lib/libungif.a

cp gif_lib.h /mingw/include

gcc -shared -o /mingw/bin/libregif-4.dll lib/*.o

Then, create an import library for ReGIF like this:


cd /mingw/lib
echo EXPORTS > regif.def
nm /mingw/bin/libregif-4.dll | grep ' T _' | sed 's/.* T _//' | grep -i gif >> lzo2.def
dlltool --def regif.def --dllname libregif-4.dll --output-lib /mingw/lib/libgif.dll.a
cp libgif.dll.a libregif.dll.a
cp libgif.dll.a libungif.dll.a

MinGW: Compiling FreeType 2.3.5 Statically

This post was part of my MPlayer compilation tutorial. However, FreeType 2.3.5 has become outdated, so I moved its information here.


The Freetype library depends on the iconv library, so let's install the iconv library first. Download libiconv from here. Compile libiconv as follows:


cd ~

tar xvzf libiconv-1.13.tar.gz

cd libiconv-1.13

./configure --prefix=/mingw --disable-shared

make

make install

Now that libiconv has been compiled and installed, download the Freetype2 library from here and install it as follows:


cd ~

tar xzvf freetype-2.3.5.tar.gz

cd freetype-2.3.5

./configure --prefix=/mingw --disable-shared

make

make install

If you get the following error:


In file included from C:/MinGW/MSYS/home/Johnny/freetype-2.3.5/include/freetype/config/ftstdlib.h:123,

from ./builds/unix/ftconfig.h:43,

from C:/MinGW/MSYS/home/Johnny/freetype-2.3.5/src/base/ftsystem.c:29:

C:/MinGW/bin/../lib/gcc/mingw32/3.4.5/../../../../include/stdlib.h:317: error: syntax error before "double"

make: *** [/home/Johnny/freetype-2.3.5/objs/ftsystem.lo] Error 1

make the following change in line 317 of the file C:\MinGW\include\stdlib.h (change inline to __inline__):


__inline__ double __cdecl __MINGW_NOTHROW strtod (const char* __restrict__ __nptr, char** __restrict__ __endptr)

Saturday, August 22, 2009

Using Hex Editor to Make aMule work on Windows 9x/ME

I successfully compiled aMule for Windows. My own aMule binary worked fine on Windows XP and Windows Vista. But it failed on Windows ME with an error pop-up:


The AMULE.EXE file is linked to missing export
KERNEL32.DLL:SetFilePointerEx.

I searched Yahoo! for a solution to this problem using these keywords: missing export kernel32.dll setfilepointerex. I was led to this webpage. It is said that SetFilePointerEx can be replaced with SetFilePointer on Windows 98/ME. Rather than fixing it from the source level, I resorted to a hex editor to quickly fix the problem.


I downloaded XVI and opened amule.exe. I searched for the text string "SetFilePointerEx" and overwrote the ending "Ex" with hex strings "00 00".


aMule started alright. I hope it functions without a problem.


Related Links


Wednesday, August 19, 2009

MinGW: Posix Threads for Win32

Because a good number of software from Linux require Posix threads, porting them to a Win32 platform can be a problem as Windows is not a POSIX-compliant platform. I found an open-source project Pthreads-w32 that specifically deals with this issue. I downloaded pthreads-w32-2-8-0-release.tar.gz from the FTP site and unpacked it. Then, I issued the following command:


make clean GC-static

This produces a static library libpthreadGC2.a. I installed it by manually copying the headers and static library:


cp -iv pthread.h semaphore.h sched.h /mingw/include/
cp -iv libpthreadGC2.a /mingw/lib
cp -iv libpthreadGC2.a /mingw/lib/libpthread.a

When using the static library, don't forget to define PTW32_STATIC_LIB with CPPFLAGS.


CPPFLAGS="-DPTW32_STATIC_LIB"
export CPPFLAGS

I have yet to learn how to use this Posix thingy. I think it probably involves including the headers in my code and linking with the static library libpthread.a at the final linking stage.

Tuesday, August 18, 2009

MinGW: Building aMule for Windows

aMule is a peer-to-peer file-sharing program for Windows, Linux, Mac and *BSD. aMule can be used to share files with users of eMule. This post describes the steps I took in building aMule for Windows.


  1. First, install MinGW as shown in this post. Download pkg-config.exe and save it in /mingw/bin:



  2. Install Strawberry Perl or ActivePerl. If you've already unpacked aMule source, open src/libs/ec/file_generator.perl with a text editor and modify the first line. If ActivePerl is installed:
    #!/c/Perl/bin/perl

    If Strawberry Perl is installed:


    #!/c/strawberry/perl/bin/perl


  3. Download the Zlib source (zlib125.zip) and unpack it with unzip or 7zip. Then, compile Zlib like this:


    cd zlib-1.2.5/ 
    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 /mingw/lib
    cp -iv libzdll.a /mingw/lib/libz.dll.a


  4. Build wxMSW statically and monolithically as shown in this post. Alternatively, you can also build wxMSW as shared library.



  5. Download Crypto++ source (cryptopp560.zip) and extract it into a new folder:
    mkdir cryptopp
    cd cryptopp
    unzip ../cryptopp560.zip

    Prior to compiling Crypto++, I changed the line that define PREFIX at the beginning of GNUmakefile:


    # Default prefix for make install

    ifeq ($(PREFIX),)

    PREFIX = /mingw

    endif

    Then, I compiled Crypto++ with this command:


    make -f GNUmakefile

    Compile stopped on rijndael.cpp with the error: 'alloca' was not declared in this scope. So I added #include <malloc.h> to the beginning of rijndael.cpp and resumed make -f GNUmakefile. After make finished, I installed Crypto++ by typing:


    make -f GNUmakefile install

    The following files are installed under /mingw:


    bin/cryptest.exe

    include/cryptopp/

    lib/libcryptopp.a

  6. Download GeoIP source from here. Compile GeoIP like this:

    ./configure --prefix=/mingw LDFLAGS="-L/mingw/lib -lws2_32 -lz"

    make

    make install

    The following files are installed.


    include/GeoIP.h
    include/GeoIPCity.h
    /include/GeoIPUpdate.h
    lib/libGeoIP.a
    lib/libGeoIP.la
    lib/libGeoIPUpdate.a
    lib/libGeoIPUpdate.la

    I created GeoIP.dll as follows:


    cd libGeoIP/.libs

    mkdir ws2_32

    cd ws2_32

    ar x /mingw/lib/libws2_32.a

    cd ..

    dllwrap --export-all-symbols --add-stdcall-alias -o GEOIP.DLL --dllname
    GEOIP.DLL GeoIP.o GeoIPCity.o regionName.o timeZone.o ws2_32/dkrgs00086.o ws2_32/dkrgs00082.o ws2_32/dkrgs00081.o -L/mingw/lib -lws2_32 -lz

    Then, I created an import library for GeoIP.dll like this:


    echo EXPORTS > geoip.def

    nm GEOIP.DLL | grep ' T _' | sed 's/.* T _//' | grep -i geoip >> geoip.def

    dlltool --def geoip.def --dllname GEOIP.DLL --output-lib libgeoip.dll.a

    Move GEOIP.DLL to /mingw/bin and libgeoip.dll.a to /mingw/lib. Then, modify /mingw/lib/libGeoIP.la as necessary.



    # The name that we can dlopen(3).
    dlname='../bin/GEOIP.DLL'

    # Names of this library.
    library_names='libgeoip.dll.a'


  7. Build GNU regex library as shown in this post.



  8. Get the latest libiconv source (libiconv-1.13.1.tar.gz) and compile it like this:
    ./configure --prefix=/mingw --disable-shared
    make
    make install

    Then, get the latest gettext source (gettext-0.17.tar.gz) and compile it as follows:


    ./configure --prefix=/mingw --enable-threads=win32 --enable-relocatable --disable-shared

    cd gettext-runtime

    make

    make install


  9. Get the aMule source and unpack it. I compiled aMule like this:


    ./configure --prefix=/mingw --enable-geoip --enable-amulecmd --enable-alc --enable-alcc --enable-nls --enable-rpath --enable-optimize --disable-debug

    make

    make install

    aMule installs the following files under /mingw:


    bin/amule.exe
    bin/autostart-xas
    bin/ed2k.exe
    lib/xchat/plugins/xas.pl
    man/de/man1/amule.1
    man/de/man1/ed2k.1
    man/de/man1/xas.1
    man/es/man1/amule.1
    man/es/man1/ed2k.1
    man/es/man1/xas.1
    man/eu/man1/amule.1
    man/eu/man1/ed2k.1
    man/eu/man1/xas.1
    man/fr/man1/amule.1
    man/fr/man1/ed2k.1
    man/hu/man1/amule.1
    man/hu/man1/ed2k.1
    man/hu/man1/xas.1
    man/man1/amule.1
    man/man1/ed2k.1
    man/man1/xas.1
    share/amule/skins/gnome.zip
    share/amule/skins/kde4.zip
    share/amule/skins/tango.zip
    share/amule/skins/xfce.zip
    share/applications/amule.desktop
    share/doc/aMule-2.2.5/ABOUT-NLS
    share/doc/aMule-2.2.5/Changelog
    share/doc/aMule-2.2.5/EC_Protocol.txt
    share/doc/aMule-2.2.5/ED2K-Links.HOWTO
    share/doc/aMule-2.2.5/INSTALL
    share/doc/aMule-2.2.5/README
    share/doc/aMule-2.2.5/TODO
    share/doc/aMule-2.2.5/amule-win32.HOWTO.txt
    share/doc/aMule-2.2.5/amulesig.txt
    share/doc/aMule-2.2.5/license.txt
    share/doc/aMule-2.2.5/socks4.protocol
    share/locale/ar/LC_MESSAGES/amule.mo
    share/locale/ast/LC_MESSAGES/amule.mo
    share/locale/bg/LC_MESSAGES/amule.mo
    share/locale/ca/LC_MESSAGES/amule.mo
    share/locale/cs/LC_MESSAGES/amule.mo
    share/locale/da/LC_MESSAGES/amule.mo
    share/locale/de/LC_MESSAGES/amule.mo
    share/locale/el/LC_MESSAGES/amule.mo
    share/locale/en_GB/LC_MESSAGES/amule.mo
    share/locale/es/LC_MESSAGES/amule.mo
    share/locale/et_EE/LC_MESSAGES/amule.mo
    share/locale/eu/LC_MESSAGES/amule.mo
    share/locale/fi/LC_MESSAGES/amule.mo
    share/locale/fr/LC_MESSAGES/amule.mo
    share/locale/gl/LC_MESSAGES/amule.mo
    share/locale/he/LC_MESSAGES/amule.mo
    share/locale/hr/LC_MESSAGES/amule.mo
    share/locale/hu/LC_MESSAGES/amule.mo
    share/locale/it/LC_MESSAGES/amule.mo
    share/locale/it_CH/LC_MESSAGES/amule.mo
    share/locale/ja/LC_MESSAGES/amule.mo
    share/locale/ko_KR/LC_MESSAGES/amule.mo
    share/locale/lt/LC_MESSAGES/amule.mo
    share/locale/nl/LC_MESSAGES/amule.mo
    share/locale/nn/LC_MESSAGES/amule.mo
    share/locale/pl/LC_MESSAGES/amule.mo
    share/locale/pt_BR/LC_MESSAGES/amule.mo
    share/locale/pt_PT/LC_MESSAGES/amule.mo
    share/locale/ru/LC_MESSAGES/amule.mo
    share/locale/sl/LC_MESSAGES/amule.mo
    share/locale/sq/LC_MESSAGES/amule.mo
    share/locale/sv/LC_MESSAGES/amule.mo
    share/locale/tr/LC_MESSAGES/amule.mo
    share/locale/uk/LC_MESSAGES/amule.mo
    share/locale/zh_CN/LC_MESSAGES/amule.mo
    share/locale/zh_TW/LC_MESSAGES/amule.mo
    share/pixmaps/amule.xpm

    To save disk space, you may choose to make the executable files smaller by running this command: strip *.exe


  10. aMule uses GeoIP data if it is built with GeoIP support. You can copy GeoIP.dat from the GeoIP source package to the aMule folder.
  11. Installing aMule is easy even without an installer. Just copy aMule and its files into a new folder, for example C:\Program Files\aMule. To create a shortcut in the Start menu, go to %APPDATA%\Microsoft\Windows\Start Menu and create a shortcut there.


Related Posts


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

Sunday, August 16, 2009

Mplayer & Mencoder: Extracting AC3 audio from DVD

Extracting AC3 audio from a DVD is a smart thing to do when ripping DVD's. First of all, it separates the audio part of the task and lets the user focus on the video encoding part. Secondly, it helps the user to make decision about the bitrate of the video depending on the size of output files. Here's my mencoder command to extract AC3 data from a DVD.


mencoder.exe dvd://1 -dvd-device D: -aid 128 -ss 4 -o war.ac3 -of rawaudio -oac copy -ovc frameno

Alternatively, I can use MPlayer to achieve the same thing.


mplayer movie.vob -aid 128 -dumpaudio -dumpfile audio-en-51.ac3

mplayer movie.vob -aid 129 -dumpaudio -dumpfile audio-fr-51.ac3

Oddly, the output file war.ac3 plays fine with MPlayer, but can't be played with VLC player. Is it because VLC player is inferior to MPlayer?


When Mencoder finished ripping DVD audio, it displayed the following:


Recommended video bitrate for 650MB CD: 434

Recommended video bitrate for 700MB CD: 502

Recommended video bitrate for 800MB CD: 637

Recommended video bitrate for 2 x 650MB CD: 1316

Recommended video bitrate for 2 x 700MB CD: 1451

Recommended video bitrate for 2 x 800MB CD: 1723



Video stream: 0.767 kbit/s (95 B/s) size: 593132 bytes 6183.043 secs 148295 frames



Audio stream: 448.000 kbit/s (55999 B/s) size: 345966435 bytes 6177.972 secs

This information is helpful in deciding the bitrate of the video.



Extracting Video from DVD


To extract only video from a DVD, I used the following command:


mencoder dvd://1 -dvd-device D: -o war.264 -of rawvideo -vf filmdint -ofps 24000/1001 -nosound -ovc x264 -x264encopts bitrate=720:vbv_maxrate=1000:vbv_bufsize=2000:direct_pred=auto:8x8dct:me=umh:trellis=1:pass=1:turbo=2 -ss 4

Wednesday, August 12, 2009

Including WinTab and IE55 Library with GTK+ 2.6.10

The information herein is not thoroughly tested. GTK+ 2.6.10 provides options to include WinTab library and IE 5.5 library. However, I haven't found much use of these libraries yet. Anyway, to try these features, read on.


Download wtkit126.zip and unpack it into /mingw/include. Rename “wtkit126 Folder” as wtkit126. Also, download ie55_lib.exe or ie6_lib.exe, and extract sample.exe from it. Again, extract sample.exe into a new folder in /mingw/include.


mkdir /mingw/include/ie55_lib
cd /mingw/include/ie55_lib
unzip ~/sample.exe

When you configure GTK+ 2.6.10, add --with-wintab=/mingw/include/wtkit126 --with-ie55=/mingw/include/ie55_lib.

Sunday, August 9, 2009

Download Location of IBM Lotus Symphony 1.3

Without much fanfare, IBM Lotus Symphony 1.3 was released on June 10. Symphony is an office productivity suite. I know, it's pretty much unheard of to most people. Anyway, I wanted to give it a try. For some reason, the IBM website removed old web pages about IBM/Lotus Symphony, including the entry point symphony.lotus.com. I hope IBM doesn't abandon development of this fine suite.

Searching Yahoo! for “symphony 1.3 download” helped me find the download link for IBM/Lotus Symphony 1.3. I am putting it here so I can download it again later.

Saturday, August 8, 2009

Mencoder: Extract Sound from a DVD track and Save it as .WAV file

A friend of mine asked me to make an audio CD from the sound extracted from a DVD track. For this job, I used mencoder which I've compiled for both Windows and Linux. After several attempts, I found the right mencoder command to extract sound from a DVD track to a raw headerless uncompressed PCM format. The track I wanted was the second track on the DVD. Here's my mencoder command:


mencoder.exe dvd://2 -o track2.raw -of rawaudio -oac pcm -ovc frameno

This will produce a file which only holds uncompressed PCM data. You can't yet play it with a media player. It's got to be converted to the .WAV format. I opened it in audacity and chose File, Import, Raw Data... from the menu. In the Import Data... dialog, I chose the following settings:


  • Encoding: Signed 16-bit PCM
  • Byte-order: Little-endian
  • Channels: 2 Channels (Stereo)
  • Start offset: 0 bytes
  • Amount to import: 100 %
  • Sample Rate: 44100 Hz

Audacity opened it with no problem. Then, I saved the file in .WAV fomat by selecting File, Export... from the menu.


The resulting .WAV file can be burnt to a CD using most CD burners including InfraRecoder and CDBurnerXP.

About This Blog

KBlog logo This blog seeks to provide a collection of interesting pictures found on the Web. Thanks for visiting the blog and posting your comments.

© Contents by KBlog

© Blogger template by Emporium Digital 2008

Followers

Total Pageviews

Powered By Blogger