View Single Post
Old May 4th, 2008, 3:18 PM   #2
Benoit
Expert Programmer
 
Benoit's Avatar
 
Join Date: Sep 2004
Location: Ontario, Canada
Posts: 556
Rep Power: 5 Benoit is on a distinguished road
Re: what does undefined reference mean?

The compiler is telling you it doesn't know what IID_IPicture is, it wasn't declared anywhere in the above code. You can fix this by finding out what kind of data IID_IPicture is in your code, (a quick look up of the oleLoadPicture() function says its of type REFIID) and doing a variable declaration and whatever else is required for that piece of data.
__________________
Johnny was a chemist's son but Johnny is no more, for what Johnny thought was H2O was H2SO4
Benoit is offline   Reply With Quote