About inconsistent dll linkage

前端 未结 7 777
遥遥无期
遥遥无期 2020-12-29 01:25

How can I remove this link warning? You can see code segment that causes this warning.

static AFX_EXTENSION_MODULE GuiCtrlsDLL = { NULL, NULL };
//bla bla
//         


        
7条回答
  •  死守一世寂寞
    2020-12-29 02:15

    That warning is usually caused by a duplicate definition of a function with different use of dllimport. Are you sure you didn't do this?

提交回复
热议问题