Skip to content
Snippets Groups Projects
Commit e5141039 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Added imports of kernel32.dll where necessary.

parent 1d0d244e
No related branches found
No related tags found
No related merge requests found
name setupapi
type win32
import kernel32.dll
# almost all functions are commented out for now. Ordinals are from setupapi.dll 4.0
# 45 stdcall SetupAddInstallSectionToDiskSpaceListA() SetupAddInstallSectionToDiskSpaceListA
......
......@@ -5,6 +5,7 @@ VPATH = @srcdir@
MODULE = wnaspi32
SOVERSION = 1.0
ALTNAMES = winaspi
IMPORTS = kernel32
C_SRCS = \
aspi.c \
......
......@@ -2,6 +2,8 @@ name wnaspi32
type win32
init WNASPI32_LibMain
import kernel32.dll
1 stdcall GetASPI32SupportInfo() GetASPI32SupportInfo
2 cdecl SendASPI32Command(ptr) SendASPI32Command
4 stdcall GetASPI32DLLVersion() GetASPI32DLLVersion
......
......@@ -5,7 +5,7 @@ VPATH = @srcdir@
MODULE = wineps
SOVERSION = 1.0
ALTNAMES = wineps16
IMPORTS = gdi32
IMPORTS = gdi32 kernel32
C_SRCS = \
afm.c \
......
......@@ -3,3 +3,4 @@ type win32
init PSDRV_Init
import gdi32.dll
import kernel32.dll
......@@ -4,6 +4,7 @@ SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = wininet
SOVERSION = 1.0
IMPORTS = kernel32
C_SRCS = \
http.c \
......
......@@ -2,6 +2,8 @@ name wininet
type win32
init WININET_LibMain
import kernel32.dll
@ stub InternetInitializeAutoProxyDll
@ stub ShowCertificate
@ stub CommitUrlCacheEntryA
......
......@@ -5,7 +5,7 @@ VPATH = @srcdir@
MODULE = winmm
SOVERSION = 1.0
ALTNAMES = mmsystem sound
IMPORTS = user32
IMPORTS = user32 kernel32
C_SRCS = \
joystick.c \
......
......@@ -4,6 +4,7 @@ init WINMM_LibMain
rsrc winmm_res
import user32.dll
import kernel32.dll
# ordinal exports
1 stdcall @(ptr long long) PlaySoundA
......
......@@ -5,7 +5,7 @@ VPATH = @srcdir@
MODULE = ws2_32
SOVERSION = 1.0
ALTNAMES = winsock
IMPORTS = user32
IMPORTS = user32 kernel32
C_SRCS = \
async.c \
......
......@@ -7,6 +7,7 @@ type win32
init WSOCK32_LibMain
import user32.dll
import kernel32.dll
# EXPORTS ***********
1 stdcall accept(long ptr ptr) WSOCK32_accept
......
......@@ -4,7 +4,7 @@ SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = winspool.drv
SOVERSION = 1.0
IMPORTS = gdi32
IMPORTS = gdi32 advapi32 kernel32
C_SRCS = \
info.c \
......
......@@ -4,6 +4,8 @@ file winspool.drv
init WINSPOOL_EntryPoint
import gdi32.dll
import advapi32.dll
import kernel32.dll
101 stub ADVANCEDSETUPDIALOG
102 stub AbortPrinter
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment