I have 3rd party library in my program.
For example :
#INCLUDE <3rdPartyHeaderA.h>
#INCLUDE <3rdPartyHeaderB.h>
int main(int argc, char** argv)
{
  // some stuff
}
How do i know 3rdPartyHeaderA.h is using which particular .lib or .dll. I looked over 3rdPartyHeaderA.h but there is no information.
I'm asking this question because i need to determine which .lib or .dll should I add into project environment since I don't wan to add all of them.
This might be a stupid question . if that so, feel free to vote down. Thanks.
EDIT : Thanks Wyzard for clarifying my question.
It's asking how to determine whether the functions declared in 3rdPartyHeaderA.h are defined in Foo.lib or Bar.lib (or Foo.dll or Bar.dll, or whatever). – Wyzard
 
     
    