c++ Visual Studio, 'vc_attributes::YesNoMaybe' : 'enum' 类型重定义错误

c++ Visual Studio, 'vc_attributes::YesNoMaybe' : 'enum' type redefinition error

本文关键字:enum YesNoMaybe 类型 错误 定义 Studio Visual vc c++ attributes      更新时间:2023-10-16

我正试图使用以下c++代码来获取进程的内存空间

#include "stdafx.h"
#include <windows.h>
#include <stdio.h>
#include <psapi.h>
void PrintMemoryInfo( DWORD processID )
{
    HANDLE hProcess;
    PROCESS_MEMORY_COUNTERS pmc;
    // Print the process identifier.
    printf( "nProcess ID: %un", processID );
    // Print information about the memory usage of the process.
    hProcess = OpenProcess(  PROCESS_QUERY_INFORMATION |
                             PROCESS_VM_READ,
                             FALSE, 
                             processID );
    if (NULL == hProcess)
        return;
    if ( GetProcessMemoryInfo( hProcess, &pmc, sizeof(pmc)) )
    {
        printf( "tPageFaultCount: 0x%08Xn", pmc.PageFaultCount );
        printf( "tYour app's PEAK MEMORY CONSUMPTION: 0x%08Xn", 
                  pmc.PeakWorkingSetSize );
        printf( "tYour app's CURRENT MEMORY CONSUMPTION: 0x%08Xn", pmc.WorkingSetSize );
        printf( "tQuotaPeakPagedPoolUsage: 0x%08Xn", 
                  pmc.QuotaPeakPagedPoolUsage );
        printf( "tQuotaPagedPoolUsage: 0x%08Xn", 
                  pmc.QuotaPagedPoolUsage );
        printf( "tQuotaPeakNonPagedPoolUsage: 0x%08Xn", 
                  pmc.QuotaPeakNonPagedPoolUsage );
        printf( "tQuotaNonPagedPoolUsage: 0x%08Xn", 
                  pmc.QuotaNonPagedPoolUsage );
        printf( "tPagefileUsage: 0x%08Xn", pmc.PagefileUsage ); 
        printf( "tPeakPagefileUsage: 0x%08Xn", 
                  pmc.PeakPagefileUsage );
    }
    CloseHandle( hProcess );
}
int main( )
{
  PrintMemoryInfo( GetCurrentProcessId() );
    return 0;
}

但出现了类似的错误

Error   2   error C2011: 'vc_attributes::YesNoMaybe' : 'enum' type redefinition 
Error   3   error C2011: 'vc_attributes::AccessType' : 'enum' type redefinition 
Error   4   error C2011: 'vc_attributes::Pre' : 'struct' type redefinition  
Error   5   error C3094: 'repeatable': anonymous usage not allowed  
...

如何解决这个问题,我使用visualstudio2008

尝试清理和重建整个解决方案。有一些报告也有类似的错误,比如这里,明显的解决方案是重建。