|
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
|