| 60 | } |
| 61 | |
| 62 | UINT AppConfiguration::GetOutputFormat() |
| 63 | { |
| 64 | UINT outputFormat = OUTPUT_FORMAT_HTML; |
| 65 | DWORD dwValue = 0; |
| 66 | if (GetDwordProperty(TEXT("OutputFormat"), dwValue)) |
| 67 | { |
| 68 | if (dwValue >= OUTPUT_FORMAT_HTML && dwValue < OUTPUT_FORMAT_LAST) |
| 69 | { |
| 70 | outputFormat = dwValue; |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | return outputFormat; |
| 75 | } |
| 76 | |
| 77 | void AppConfiguration::SetOutputFormat(UINT outputFormat) |
| 78 | { |
nothing calls this directly
no outgoing calls
no test coverage detected