CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Threaded View

  1. #1
    Join Date
    Mar 2007
    Posts
    13

    unresolved external symbol using DDK.

    Hi,
    I am currently trying to get into driver development and when using the source code for the project found here I get the following linking errors

    Code:
    entry.obj : warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/DRIVER' specification
    entry.obj : error LNK2019: unresolved external symbol __imp__IoCreateSymbolicLink referenced in function _DriverEntry
    entry.obj : error LNK2019: unresolved external symbol __imp__IoCreateDevice referenced in function _DriverEntry
    entry.obj : error LNK2019: unresolved external symbol __imp__IoDeleteDevice referenced in function _Example_Unload
    entry.obj : error LNK2019: unresolved external symbol __imp__IoDeleteSymbolicLink referenced in function _Example_Unload
    functions.obj : error LNK2019: unresolved external symbol __imp__MmMapLockedPagesSpecifyCache referenced in function _Example_WriteDirectIO
    Debug\Drive.exe : fatal error LNK1120: 5 unresolved externals
    I was wondering if anyone could help me with this. I am using VC++ 2005 sp1 version 8 (if that will help any) also using the newest DDK.

    [attached is the full build log.]
    Attached Files Attached Files

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured