Re: Re: Developping a forwarding application

Home Forums Discussions Support Developing a forwarding application Re: Re: Developping a forwarding application

#6879
Eldred
Participant

    It still doesn’t work… I’m just trying to build this simple program that should display “0” :

    #include
    #include
    #include “Common.h”
    #include “ndisapi.h”
    #include

    int main()
    {
    printf(“%sn”,GetDriverVersion(NULL));
    return 0;
    }

    with g++ -o test main.cc -lndisapi

    I tried to link with the provided library, then mine ; and I still have a :

    D:DOCUME~1EldredLOCALS~1Temp/ccE1baaa.o(.text+0x2a):main.cc: undefined reference to `GetDriverVersion@4′

    I don’t understand…