Compile error in 'winbase.h'

前端 未结 3 1658
失恋的感觉
失恋的感觉 2021-01-01 10:34

I get the following error with a Windows file when compiling winbase.h.

Not sure why I get a syntax error and the compiler shows many more:



        
3条回答
  •  余生分开走
    2021-01-01 11:10

    You are probably missing a ; immediate before the #include line in your code. Alternatively, there is some identifier-like text preceding the include file line.

    int ABC
    #include 
    

提交回复
热议问题