vote up 1 vote down star

I'm attempting to compile a screensaver using Visual C++ 2008 Express Edition SP1 on Windows XP. I get a runtime error: "The procedure entry point ChangeWindowMessageFilter() could not be located in the dynamic link library USER32.dll." As far as I can tell, this is because Microsoft botched the scrnsave.lib library included in VS 2008 to call a Vista-specific function, which fails on XP because the function does not exist.

Defining WINVER doesn't seem to do anything.

How can I work around this?

flag

1 Answer

vote up 0 vote down

You could try getting an older version of the Platform SDK, and link to its version of scrnsave.lib.

http://www.microsoft.com/downloads/details.aspx?FamilyId=A55B6B43-E24F-4EA3-A93E-40C0EC4F68E5&displaylang=en is the download link for the Windows Server 2003 SP1 Platform SDK.

link|flag
I was hoping to avoid downloading and installing an entire old SDK just for one file, but unless someone can come up with a better option I may have to do this. – james_block May 6 at 1:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.