在win32控制台项目中生成日志文件时出错

时间:2012-05-22 08:37:26

标签: windows visual-studio-2010 visual-c++ mfc ini

我有一个生成日志文件的代码: -

// INI.cpp: implementation of the CINI class.


//#include "stdafx.h"

#include "INI.h"
#include <iostream>

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif


CINI::CINI(char* szFileName)
{

    memset(m_szFileName, 0x00, 255); 
    memcpy(m_szFileName, szFileName, strlen(szFileName));

}

CINI::~CINI()
{

}


float CINI::ReadFloat(char* szSection, char* szKey, float fltDefaultValue)
{
    char szResult[255]; 
    char szDefault[255]; 
    float fltResult; sprintf(szDefault, "%f",fltDefaultValue); 
    GetPrivateProfileString(szSection,  szKey, szDefault, szResult, 255, m_szFileName);  
    fltResult =  atof(szResult); return fltResult;
}

bool CINI::ReadBoolean(char* szSection, char* szKey, bool bolDefaultValue)
{
    char szResult[255]; 
    char szDefault[255]; 
    bool bolResult; 
    sprintf(szDefault, "%s", bolDefaultValue? "True" : "False"); 
    GetPrivateProfileString(szSection, szKey, szDefault, szResult, 255, m_szFileName);
    bolResult =  (strcmp(szResult, "True") == 0 || strcmp(szResult, "true") == 0) ? true : false; return bolResult;
}

char* CINI::ReadString(char* szSection, char* szKey, const char* szDefaultValue)
{ 
    memset(m_szResult, 0x00, 255); 
    GetPrivateProfileString(szSection,  szKey, szDefaultValue, m_szResult, 255, m_szFileName);  
    return m_szResult;
}

void CINI::WriteInteger(char* szSection, char* szKey, int iValue)
{ 
    char szValue[255]; sprintf(szValue, "%d", iValue); 
    WritePrivateProfileString(szSection,  szKey, szValue, m_szFileName);
}

void CINI::WriteFloat(char* szSection, char* szKey, float fltValue)
{
    char szValue[255]; 
    sprintf(szValue, "%f", fltValue); 
    WritePrivateProfileString(szSection,  szKey, szValue, m_szFileName);
}

void CINI::WriteBoolean(char* szSection, char* szKey, bool bolValue)
{ 
    char szValue[255]; sprintf(szValue, "%s", bolValue ? "True" : "False"); 
    WritePrivateProfileString(szSection,  szKey, szValue, m_szFileName);
}

void CINI::WriteString(char* szSection, char* szKey, char* szValue)
{
    WritePrivateProfileString(szSection,  szKey, szValue, m_szFileName);
}

运行代码时出现以下错误: -

c:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afx.h(24): fatal error C1189: #error :  Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version. Please #define _AFXDLL or do not use /MD[d]

当我包含StdAfx.h和StdAfx.cpp时,我收到以下错误: -

 StdAfx.cpp
1>c:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afx.h(24): fatal error C1189: #error :  Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version. Please #define _AFXDLL or do not use /MD[d]
1>  INI.cpp
1>c:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afx.h(24): fatal error C1189: #error :  Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version. Please #define _AFXDLL or do not use /MD[d]

我正在使用VS2010并需要构建win32控制台项目。请帮忙。

1 个答案:

答案 0 :(得分:1)

您必须更改项目的属性:

转到项目 - &gt;属性(最后一个菜单项) - &gt;配置属性 - &gt;一般

在那里,您将看到“项目默认值”部分,其中包含“使用MFC”选项。选择“在静态库中使用MFC”。

基本上,您遇到了冲突,因为在代码生成设置中,选择了多线程静态运行时库,并且您尝试使用的MFC库是使用基于dll的C运行构建的 - 时间。