Changeset 102:40c02ead0a2c
- Timestamp:
- 02/09/08 21:34:55
(8 months ago)
- Author:
- Frank Benoit <benoit@tionex.de>
- Children:
103:1a8b8c3d80a4 104:3926f6c95d6f
- branch:
- default
- Message:
resource manifest
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r100 |
r102 |
|
| 12 | 12 | Import libs: |
|---|
| 13 | 13 | ============ |
|---|
| 14 | | To link everything you need the import libs. |
|---|
| 15 | | They are not included in the source repository, please use this archive |
|---|
| | 14 | To link everything you need the import libs. |
|---|
| | 15 | They are not included in the source repository, please use this archive |
|---|
| 16 | 16 | |
|---|
| 17 | 17 | http://downloads.dsource.org/projects/dwt-linux/dwt-win-libs.zip |
|---|
| … | … | |
| 29 | 29 | Subsystem linker option |
|---|
| 30 | 30 | ======================= |
|---|
| 31 | | For dmd linker 'optlink' there is the option SUBSYSTEM which defines if the executable |
|---|
| | 31 | For dmd linker 'optlink' there is the option SUBSYSTEM which defines if the executable |
|---|
| 32 | 32 | shall be a console or windows application and the minimum required windows version (4=win95,5=win2000,6=vista) |
|---|
| 33 | 33 | -L/SUBSYSTEM:windows:5 |
|---|
| 34 | 34 | Without this option, DWT renderes some controls not correctly. Eg. table headers are not shown. |
|---|
| | 35 | |
|---|
| | 36 | Themes |
|---|
| | 37 | ====== |
|---|
| | 38 | To use theming in winxp, there is a manifest necessary. This forces windows to load comctl32.dll |
|---|
| | 39 | in version 6 instead of 5. |
|---|
| | 40 | Use the resource compiler from visual studio "rc dwt.rc" to get dwt.res |
|---|
| | 41 | Link it with -L/RC:dwt.res |
|---|
| 35 | 42 | |
|---|
| 36 | 43 | |
|---|
| … | … | |
| 39 | 46 | |
|---|
| 40 | 47 | |
|---|
| 41 | | |
|---|
| 42 | | |
|---|