LookupIconIdFromDirectory16() is unused
dlls/user32/cursoricon.c defines a LookupIconIdFromDirectory16() function which is not used anywhere. What is strange is thar user.exe.spec exports a LookupIconIdFromDirectoryEx() function. So shouldn't it export a LookupIconIdFromDirectory() function too? In which case I suspect that LookupIconIdFromDirectory16() would be its implementation... Unfortunately I have no information about what 16bit dlls are supposed to export... -- Francois Gouget <fgouget(a)free.fr> http://fgouget.free.fr/ Any sufficiently advanced bug is indistinguishable from a feature. -- from some indian guy
Francois Gouget <fgouget(a)free.fr> writes:
dlls/user32/cursoricon.c defines a LookupIconIdFromDirectory16() function which is not used anywhere.
What is strange is thar user.exe.spec exports a LookupIconIdFromDirectoryEx() function. So shouldn't it export a LookupIconIdFromDirectory() function too? In which case I suspect that LookupIconIdFromDirectory16() would be its implementation...
Unfortunately I have no information about what 16bit dlls are supposed to export...
It's apparently not exported from 16-bit user.exe, so it can be removed. -- Alexandre Julliard julliard(a)winehq.org
On Sa, 2009-02-07 at 15:29 +0100, Francois Gouget wrote:
What is strange is thar user.exe.spec exports a LookupIconIdFromDirectoryEx() function. So shouldn't it export a LookupIconIdFromDirectory() function too?
LookupIconIdFromDirectoryEx (ordinal 364) is exported by name in XP. In win3.11, ordinal 364 is not listed as exported function. LookupIconIdFromDirectory is not exported by name in win3.11 or XP
Unfortunately I have no information about what 16bit dlls are supposed to export...
I'm using "winedump dump -j export <filename>". For some NE files, the exported functions are only visible with: "winedump dump -f <filename>" -- By by ... Detlef
Maybe this little util will come in handy. http://www.nirsoft.net/utils/dll_export_viewer.html Download is at the bottom of the page just after Feedback. Tom On Sun, Feb 8, 2009 at 12:50 AM, Detlef Riekenberg <wine.dev(a)web.de> wrote:
On Sa, 2009-02-07 at 15:29 +0100, Francois Gouget wrote:
What is strange is thar user.exe.spec exports a LookupIconIdFromDirectoryEx() function. So shouldn't it export a LookupIconIdFromDirectory() function too?
LookupIconIdFromDirectoryEx (ordinal 364) is exported by name in XP. In win3.11, ordinal 364 is not listed as exported function.
LookupIconIdFromDirectory is not exported by name in win3.11 or XP
Unfortunately I have no information about what 16bit dlls are supposed to export...
I'm using "winedump dump -j export <filename>". For some NE files, the exported functions are only visible with: "winedump dump -f <filename>"
--
By by ... Detlef
On So, 2009-02-08 at 01:23 +0800, Tom Wickline wrote:
Maybe this little util will come in handy.
http://www.nirsoft.net/utils/dll_export_viewer.html
Download is at the bottom of the page just after Feedback.
As most other dll tools, this one also does not work with NE files -- By by ... Detlef
participants (4)
-
Alexandre Julliard -
Detlef Riekenberg -
Francois Gouget -
Tom Wickline