MCPcopy Create free account
hub / github.com/BlueMatthew/WechatExporter / GetOutputFormat

Method GetOutputFormat

vcproject/AppConfiguration.cpp:62–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62UINT 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
77void AppConfiguration::SetOutputFormat(UINT outputFormat)
78{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected