David Hedberg david.hedberg@gmail.com writes:
dlls/shell32/Makefile.in | 1 + dlls/shell32/shell32.spec | 1 + dlls/shell32/shellitemarray.c | 270 ++++++++++++++++++++++++++++++++++++++++ dlls/shell32/tests/shlfolder.c | 132 +++++++++++++++++++ include/shobjidl.idl | 1 + 5 files changed, 405 insertions(+), 0 deletions(-) create mode 100644 dlls/shell32/shellitemarray.c
diff --git a/dlls/shell32/Makefile.in b/dlls/shell32/Makefile.in index 3099de2..3db4bdb 100644 --- a/dlls/shell32/Makefile.in +++ b/dlls/shell32/Makefile.in @@ -31,6 +31,7 @@ C_SRCS = \ regsvr.c \ shell32_main.c \ shellitem.c \
- shellitemarray.c \ shelllink.c \ shellole.c \ shellord.c \
This could go into shellitem.c, no need for a separate file.