| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 576 人关注过本帖
标题:编译连接错误,请大家帮忙看一下
取消只看楼主 加入收藏
jun0325
Rank: 1
等 级:新手上路
帖 子:37
专家分:0
注 册:2007-8-8
收藏
 问题点数:0 回复次数:1 
编译连接错误,请大家帮忙看一下
错误如下:
inking...
LINK : fatal error LNK1117: syntax error in option "subsystem:windows/incremental:yes"
Error executing link.exe.

Chat.exe - 1 error(s), 0 warning(s)
弹出这个错误,不知原因在哪里,请大家帮忙解决,谢谢
搜索更多相关主题的帖子: 编译 
2008-03-25 12:47
jun0325
Rank: 1
等 级:新手上路
帖 子:37
专家分:0
注 册:2007-8-8
收藏
得分:0 
代码如下:
#include "stdafx.h"
#include "Chat.h"
#include "ChatDlg.h"

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

BEGIN_MESSAGE_MAP(CChatApp, CWinApp)
    //{{AFX_MSG_MAP(CChatApp)
            //}}AFX_MSG
    ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()

CChatApp::CChatApp()
{
    // TODO: add construction code here,
    // Place all significant initialization in InitInstance
}



// The one and only CChatApp object

CChatApp theApp;

// CChatApp initialization

BOOL CChatApp::InitInstance()
{
    if(!AfxSocketInit())
    {
        AfxMessageBox("加载套接字库失败!");
        return FALSE;
    }
    AfxEnableControlContainer();

    
#ifdef _AFXDLL
    Enable3dControls();            // Call this when using MFC in a shared DLL
#else
    Enable3dControlsStatic();    // Call this when linking to MFC statically
#endif

    CChatDlg dlg;
    m_pMainWnd = &dlg;
    int nResponse = dlg.DoModal();
    if (nResponse == IDOK)
    {
        // TODO: Place code here to handle when the dialog is
        //  dismissed with OK
    }
    else if (nResponse == IDCANCEL)
    {
        // TODO: Place code here to handle when the dialog is
        //  dismissed with Cancel
    }

        return FALSE;
}

数据结构+算法+程序设计方法+语言工具和环境=程序
2008-03-25 13:25
快速回复:编译连接错误,请大家帮忙看一下
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024421 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved