c - Problems linking my driver -
i've got quite programming experience, i'm new windows driver development. trying create simple display driver, following this turorial. goal simulate second (and in future: third, etc.) display, purely virtual , renders framebuffer. grab contents of virtual screen via vnc , render remote machine.
the problem is: if try build project (using visualstudio 2013 , wdk 8.1), lnk2019 error:
error lnk2019: unresolved external symbol "driverentry" in function "gsdriverentry". e:\vs_projects\mviz\mvizvmongdidrv\bufferoverflowfastfailk.lib(gs_driverentry.obj) mvizvmongdidrv
there no driverentry
function in code, bool drvenabledriver
, acting equivalent driverentry
in display driver.
any ideas on how resolve error?
okay, found solution myself: entry point wrong. changing drvenabledriver
fixed it.
Comments
Post a Comment