Commit 4d88b6ec authored by Jon Griffiths's avatar Jon Griffiths Committed by Alexandre Julliard

Added Assoc* funcs (but not underlying IQueryAssociations object).

parent 4d1e49dc
...@@ -4,7 +4,6 @@ TOPOBJDIR = ../.. ...@@ -4,7 +4,6 @@ TOPOBJDIR = ../..
SRCDIR = @srcdir@ SRCDIR = @srcdir@
VPATH = @srcdir@ VPATH = @srcdir@
MODULE = shlwapi.dll MODULE = shlwapi.dll
# fixme: avoid ole32.dll import
IMPORTS = ole32 user32 gdi32 advapi32 kernel32 IMPORTS = ole32 user32 gdi32 advapi32 kernel32
EXTRALIBS = $(LIBUUID) $(LIBUNICODE) EXTRALIBS = $(LIBUUID) $(LIBUNICODE)
...@@ -12,6 +11,7 @@ LDDLLFLAGS = @LDDLLFLAGS@ ...@@ -12,6 +11,7 @@ LDDLLFLAGS = @LDDLLFLAGS@
SYMBOLFILE = $(MODULE).tmp.o SYMBOLFILE = $(MODULE).tmp.o
C_SRCS = \ C_SRCS = \
assoc.c \
clist.c \ clist.c \
istream.c \ istream.c \
ordinal.c \ ordinal.c \
......
...@@ -252,9 +252,9 @@ init SHLWAPI_LibMain ...@@ -252,9 +252,9 @@ init SHLWAPI_LibMain
250 stub @ 250 stub @
251 stub @ 251 stub @
252 stub @ 252 stub @
253 stub AssocCreate 253 stdcall AssocCreate(long ptr ptr) AssocCreate
254 stub AssocQueryKeyA 254 stdcall AssocQueryKeyA(long long str ptr ptr) AssocQueryKeyA
255 stub AssocQueryKeyW 255 stdcall AssocQueryKeyW(long long wstr ptr ptr) AssocQueryKeyW
256 stub @ 256 stub @
257 stub @ 257 stub @
258 stub @ 258 stub @
...@@ -380,10 +380,10 @@ init SHLWAPI_LibMain ...@@ -380,10 +380,10 @@ init SHLWAPI_LibMain
378 stdcall @(wstr long long) SHLWAPI_378 378 stdcall @(wstr long long) SHLWAPI_378
379 stub @ 379 stub @
380 stub @ 380 stub @
381 stub AssocQueryStringA 381 stdcall AssocQueryStringA(long long ptr ptr str ptr) AssocQueryStringA
382 stub AssocQueryStringByKeyA 382 stdcall AssocQueryStringByKeyA(long long ptr ptr str ptr) AssocQueryStringByKeyA
383 stub AssocQueryStringByKeyW 383 stdcall AssocQueryStringByKeyW(long long ptr ptr wstr ptr) AssocQueryStringByKeyW
384 stub AssocQueryStringW 384 stdcall AssocQueryStringW(long long ptr ptr wstr ptr) AssocQueryStringW
385 stdcall ChrCmpIA(long long) ChrCmpIA 385 stdcall ChrCmpIA(long long) ChrCmpIA
386 stdcall ChrCmpIW(long long) ChrCmpIW 386 stdcall ChrCmpIW(long long) ChrCmpIW
387 stub ColorAdjustLuma 387 stub ColorAdjustLuma
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment