4

从我使用 File->New->Project 对话框从头开始创建的项目的第一次编译,创建一个基于对话框的 MFC 应用程序,我收到了这个警告:

1>c:\local\proj_vc17\diskovery\triage\resource.h(69): warning C4005: 'IDC_STATIC': macro redefinition
1>c:\program files\microsoft visual studio\2017\community\vc\tools\msvc\14.14.26428\atlmfc\include\afxres.h(343): note: see previous definition of 'IDC_STATIC'

作为一个来自 Unix 的老手 C/C++ 人,很明显问题出在哪里,但不是为什么会发生。我无法删除它,因为 Resource Compiler 步骤(我无法弄清楚如何查看命令行执行此操作 - 在 project->Properties->Resources->Command Line 中不可见,通过选择 project->Properties 也不可见->Resources->Suppress Startup Banner=no) 包括Resource.h但不包括afxres.h. 因此,我添加了一个条件编译:

#ifndef IDC_STATIC
#define IDC_STATIC                      -1
#endif

自上次修复以来,我已经有好几天没有收到此错误,但我在名为 IDC_HELP 的对话框编辑器中创建了一个新按钮。资源编辑器随后将其放入Resource.h与游标 ID 冲突的位置。我将按钮重命名为 IDC_HELPB,但现在未使用的 IDC_HELP 并未从 Resource.h 中删除,因此需要手动编辑。(MSFT 注意:不允许与 MSFT 定义的符号冲突的控件 ID。)好的,所以我讨厌这样做,但我没有看到替代方法:我手动编辑Resource.h以删除 IDC_HELP。出于某种原因,它然后重新生成Resource.h......很高兴地没有重新添加 IDC_HELP,但再次删除了 IDC_STATIC 的条件编译。

我不确定确切的问题,不知道我的问题是什么!我应该问,如何从 Resource.h 中删除未使用的(和冲突的)符号?还是我应该首先问 IDC_STATIC 是如何进入那里的?

Resource.h 就这样。只有手动编辑是放置在 IDC_STATIC 周围的条件编译,MSFT 放在那里,而不是我。

//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by Triage.rc
//
#define IDC_MYICON                      2
#define IDD_FOOBAR_DIALOG               102
#define IDS_APP_TITLE                   103
#define IDD_ABOUTBOX                    103
#define IDM_ABOUT                       104
#define IDI_FOOBAR                      107
#define IDI_SMALL                       108
#define IDC_FOOBAR                      109
#define IDR_MAINFRAME                   128
#define IDD_DIALOG1                     129
#define IDD_WINFOOBAR                   129
#define IDD_FOOBAR                      129
#define IDR_WINFOOBAR                   130
#define IDR_FOOBAR                      130
#define IDI_ICON1                       131
#define IDI_DIR                         131
#define IDD_START                       132
#define IDD_PROGRESS                    133
#define IDC_ICHI                        1000
#define IDC_NI                          1001
#define IDC_SAN                         1002
#define IDC_SHI                         1003
#define IDC_GO                          1004
#define IDC_ROKU                        1005
#define IDC_SHOWOK                      1006
#define IDC_NANA                        1007
#define IDC_HACHI                       1008
#define IDC_DIRL                        1009
#define IDC_DIR                         1010
#define IDC_UP                          1011
#define IDC_EXPLORER                    1012
#define IDC_PROPERTIES                  1013
#define IDC_SELSUM                      1014
#define IDC_DIRSUM                      1015
#define IDC_BROWSE                      1017
#define IDC_KU                          1018
#define IDC_GREETING                    1019
#define IDC_ROOTL                       1020
#define IDC_ERROR                       1021
#define IDC_PROGRESS                    1022
#define IDC_ERRORL                      1023
#define IDC_SEP                         1024
#define IDC_BUTTON1                     1025
#define IDC_HELPB                       1027
#define ID_OPEN_                        32771
#define ID_FILE_OPENLISTS               32772
#define ID_FILE_EX                      32773
#define ID_FILE_JUU                     32774
#define ID_FILE_JUUICHI                 32775
#define ID_VIEW_ALLSIZEDATA             32776
#define ID__UNDO                        32777
#define ID__REDO                        32778
#define ID_SAVELISTS                    32779
#define ID_FILE_JUUNI                   32780
#define ID_FILE_JUUSAN                  32781
#define ID_FILE_EXIT                    32782
#define ID_FILE_SAVELISTS               32783
#define ID_UNDO                         32784
#define ID_REDO                         32785
#define ID_OPENLISTS                    32786
#define ID_JUUGO                        32787
#define ID_JUUROKU                      32788
#define ID_EXIT                         32789
#define ID_ALLSIZEDATA                  32790
#ifndef IDC_STATIC
#define IDC_STATIC                      -1
#endif

// Next default values for new objects
// 
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NO_MFC                     1
#define _APS_NEXT_RESOURCE_VALUE        134
#define _APS_NEXT_COMMAND_VALUE         32791
#define _APS_NEXT_CONTROL_VALUE         1029
#define _APS_NEXT_SYMED_VALUE           110
#endif
#endif

这是我的 RC 文件的序言。我注意到它与新创建的新项目-->MFC-->MFC 应用程序-->基于对话框有些不同,但我相信这也是我创建这个项目的方式。

// Microsoft Visual C++ generated resource script.
//
#include "resource.h"

#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#ifndef APSTUDIO_INVOKED
#include "targetver.h"
#endif
#define APSTUDIO_HIDDEN_SYMBOLS
#include "windows.h"
#undef APSTUDIO_HIDDEN_SYMBOLS

/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS

/////////////////////////////////////////////////////////////////////////////
// English (United States) resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US

/////////////////////////////////////////////////////////////////////////////
//
// Icon
//

// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
IDI_FOOBAR              ICON                    "Foobar.ico"

IDI_SMALL               ICON                    "small.ico"

IDI_DIR                 ICON                    "dir.ico"


/////////////////////////////////////////////////////////////////////////////
//
// Accelerator
//

IDC_FOOBAR ACCELERATORS
BEGIN
    "?",            IDM_ABOUT,              ASCII,  ALT
    "/",            IDM_ABOUT,              ASCII,  ALT
END


/////////////////////////////////////////////////////////////////////////////
//
// Dialog
//

IDD_ABOUTBOX DIALOGEX 0, 0, 203, 63
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "About Foobar"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
    ICON            IDR_MAINFRAME,IDC_STATIC,14,14,21,20
    LTEXT           "Foobar Analyzer, v. 3.2",IDC_STATIC,42,14,154,8,SS_NOPREFIX
    LTEXT           "Copyright (C) 2019.  All rights reserved.",IDC_STATIC,42,26,154,8
    DEFPUSHBUTTON   "OK",IDOK,146,42,50,14,WS_GROUP
END

(该文件随后描述了应用程序的其他对话框。)

4

0 回答 0