Changeset 245:d8c3d4a4f2b0
- Timestamp:
- 07/01/08 02:58:50
(3 months ago)
- Author:
- Frank Benoit <benoit@tionex.de>
- branch:
- default
- Message:
More verbose error for failed theming.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r237 |
r245 |
|
| 389 | 389 | HANDLE hActCtx = OS.CreateActCtx (&pActCtx); |
|---|
| 390 | 390 | if (hActCtx is INVALID_HANDLE_VALUE){ |
|---|
| 391 | | printError("CreateActCtx failed" ); |
|---|
| | 391 | printError("CreateActCtx failed, hence theme support will not be available\n" |
|---|
| | 392 | "Please check for:\n" |
|---|
| | 393 | " - missing link option -L/su:windows:5 or -L/su:console:5\n" |
|---|
| | 394 | " - missing link option -L/rc:dwt\n" |
|---|
| | 395 | " - resource file 'dwt.res' was not accessible by linker\n" |
|---|
| | 396 | ); |
|---|
| 392 | 397 | } |
|---|
| 393 | 398 | else{ |
|---|