syntax error : missing ';' before identifier 'PVOID64' when compiling winnt.h

前端 未结 6 1132
夕颜
夕颜 2021-01-04 10:57

I\'ve recently got the source-code on a application. When im trying to build the solution, I get an error in all parts where winnt.h is included. The error code

6条回答
  •  半阙折子戏
    2021-01-04 11:10

    Corrected manually syntax in winnt.h :

    typedef void * POINTER_64 PVOID64; => typedef void * POINTER_64, * PVOID64;
    

提交回复
热议问题