The rounded corners look really dumb at this size.
[wxWidgets.git] / samples / minimal / borland_ide.cpp
1 /*************************************************
2 // Name: borland_ide.cpp
3 // Author: Chris Elliott
4 // Modified by:
5 // Created: 26/Apr/07
6 // Copyright: (c) wxWidgets team
7 // Licence: wxWindows licence
8 //
9 // Purpose: Minimal wxWidgets start source file for
10 // Borland's Turbo explorer or Developer Studio 2006.
11 // Doubleclick / open borland.bdsproj. The current version is
12 // to be used with a dynamic build of wxWidgets-made by running
13 // make -f Makefile.bcc -DBUILD=debug -DSHARED=1
14 // in wxWidgets\build\msw. You also need the wxWidgets\lib\bcc_dll
15 // directory in your PATH.
16
17 // To use this to debug other samples, copy the borland_ide.cpp
18 // and borland.bdsproj files, then replace all occurences of
19 // "minimal" with the name of the new project files
20 **************************************************/
21
22 #define WinMain WinMain
23
24 //wx libs (you may not need all of these
25 #pragma link "wxbase30ud.lib"
26 #pragma link "wxmsw30ud_adv.lib"
27 #pragma link "wxmsw30ud_core.lib"
28 #pragma link "wxmsw30ud_html.lib"
29 #pragma link "wxmsw30ud_media.lib"
30 #pragma link "wxmsw30ud_xrc.lib"
31 #pragma link "wxmsw30ud_aui.lib"
32 #pragma link "wxmsw30ud_stc.lib"
33 #pragma link "wxmsw30ud_richtext.lib"
34
35 //graphics libs
36 #pragma link "wxpngd.lib"
37 #pragma link "wxregexud.lib"
38 #pragma link "wxtiffd.lib"
39 #pragma link "wxzlibd.lib"
40 //code aware lib
41 #pragma link "wxscintillad.lib"
42