在我使用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 ++老手,显而易见的是问题出在哪里,而不是为什么会这样。我无法删除它,因为“资源编译器”步骤(我无法弄清楚如何看到命令行执行此操作-在project-> Properties-> Resources-> Command Line中不可见,或者在选择project-> Properties中不可见->资源->禁止启动横幅=否)包含Resource.h
,但不包含afxres.h
。因此,我因此添加了一个条件编译:
#ifndef IDC_STATIC
#define IDC_STATIC -1
#endif
自上次修复以来,好几天都没有收到此错误,但是我在对话框编辑器中创建了一个新按钮,称为IDC_HELP。然后,资源编辑器会将其适当地放在Resource.h
中,该位置与游标ID冲突。我将按钮重命名为IDC_HELPB,但尚未从Resource.h中删除了现在未使用的IDC_HELP,需要进行手动编辑。 (MSFT注意:不允许控件ID与MSFT定义的符号冲突。)好,所以我讨厌这样做,但是我看不到另一种选择:我手动编辑了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
(该文件随后描述了该应用程序的其他对话框。)