couldn't open include file

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ganesah
    New Member
    • Jan 2007
    • 10

    couldn't open include file

    recently i'd downloaded a source code in c++ and tried to compile and run in VS C++ 6.0. however the source code couldn't be compiled. the error is as follows>

    before that, there is a header file in the source code written like this #include "..\..\..\VspAp i\VspApi.h"

    and the error message is as follows:

    the include file couldnt be opened '..\..\..\VspAp i\VspApi.h' : file or directory couldn be found...

    what should i modify here to get it working....FYI i'd added all the files (.cpp,.lib,.h) and also the VspApi.h file into the same file in myproject folder.......pl ease explain.

    im working on Win XP platform.
  • Soujiro
    New Member
    • Jan 2007
    • 35

    #2
    Originally posted by ganesah
    recently i'd downloaded a source code in c++ and tried to compile and run in VS C++ 6.0. however the source code couldn't be compiled. the error is as follows>

    before that, there is a header file in the source code written like this #include "..\..\..\VspAp i\VspApi.h"

    and the error message is as follows:

    the include file couldnt be opened '..\..\..\VspAp i\VspApi.h' : file or directory couldn be found...

    what should i modify here to get it working....FYI i'd added all the files (.cpp,.lib,.h) and also the VspApi.h file into the same file in myproject folder.......pl ease explain.

    im working on Win XP platform.

    ..\..\..\ would be 3 parent directory up... there you can create a folder VspApi inside would the the VspApi.h.. but you could also change the include into somthing like #include "VspApi.h". . if there are problems ask again..

    PS. are there any makefiles included in the source code.. or i guess not I can see its WinXp..

    Comment

    Working...