Saturday, January 7, 2006, 9:30:34 AM, Martin Fuchs wrote:
Changelog:
- fix folder icon index when read from registry
- change "DWORD dwNr" into "int icon_idx" at several places
Any reason you using int* instead of LPINT?
Index: shell32_main.h
RCS file: /home/wine/wine/dlls/shell32/shell32_main.h,v retrieving revision 1.110 diff -u -p -d -r1.110 shell32_main.h --- shell32_main.h 28 Nov 2005 11:04:35 -0000 1.110 +++ shell32_main.h 7 Jan 2006 16:19:07 -0000
Please rediff from the top of the tree.
On 07.01.2006 17:52:04 Vitaliy Margolen wrote:
Saturday, January 7, 2006, 9:30:34 AM, Martin Fuchs wrote:
Changelog:
- fix folder icon index when read from registry
- change "DWORD dwNr" into "int icon_idx" at several places
Any reason you using int* instead of LPINT?
What's better when using LPINT? This are all internal functions and not exported from shell32.dll.
Regards,
Martin
"Martin Fuchs" martin-fuchs@gmx.net wrote:
Any reason you using int* instead of LPINT?
What's better when using LPINT? This are all internal functions and not exported from shell32.dll.
'INT' has the same size on all platforms and with all compilers in both win32 and win64, while 'int' is platform/compiler dependent and is 32-bit or 64-bit entity depending on the platform.