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

Thread: an link problem

  1. #1
    Join Date
    Nov 2003
    Posts
    24

    an link problem

    hi guys,
    anyone knows how to link an obj file which come from another workspace?...I wanna call an fuction in that obj file....
    thanks

  2. #2
    Join Date
    Jul 2001
    Posts
    216

    Re: an link problem

    the object files gets created by the compiler.

    if you have the .obj file you should have access to the source code.

    add the .cpp and .h files that the functions are declared in into your project and then you can access the function.

    hope that helps.

    jai

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