On Friday 16 January 2004 11:57, Francois Gouget wrote:
On NT4 (or is that on Internet Explorer <=5?), comctl32 is missing entry points for DPA_Create and DPA_Search. So we need to link them dynamically if we want the rest of the tests to run.
Did you by any chance build the test with MinGW? I submitted a patch like yours a while ago and it was rejected because DPA_Create & friends where present in comctl32 but are exported by ordinal only. MinGW's libs export these by name, not ordinal only, so the resulting binary will not run on Windows.
-Hans
On Fri, 16 Jan 2004, Hans Leidekker wrote: [...]
Did you by any chance build the test with MinGW?
No, I compiled it with Microsoft Visual C++ 6.0. I made sure to get the latest and complete Windows SDK too as the previous one I had was missing 'shlwapi.h'.
I submitted a patch like yours a while ago and it was rejected because DPA_Create & friends where present in comctl32 but are exported by ordinal only.
Hmmm. Yes, it's possible that the test should load the DPA function by ordinal.