mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[DDK] wsk header: Add WSKAPI to exported functions. (#5687)
Names need decoration (stdcall) in order to be linked. When using the wsk.h header functions exported therein should be WSKAPI (which enforces the stdcall calling convention). Linking would later fail because stdcall functions are named differently in the object code.
This commit is contained in:
parent
8d74bc4b46
commit
490fbfb2c5
1 changed files with 5 additions and 0 deletions
|
@ -585,28 +585,33 @@ typedef struct _WSK_TRANSPORT
|
|||
|
||||
_Must_inspect_result_
|
||||
NTSTATUS
|
||||
WSKAPI
|
||||
WskRegister(
|
||||
_In_ PWSK_CLIENT_NPI WskClientNpi,
|
||||
_Out_ PWSK_REGISTRATION WskRegistration);
|
||||
|
||||
_Must_inspect_result_
|
||||
NTSTATUS
|
||||
WSKAPI
|
||||
WskCaptureProviderNPI(
|
||||
_In_ PWSK_REGISTRATION WskRegistration,
|
||||
_In_ ULONG WaitTimeout,
|
||||
_Out_ PWSK_PROVIDER_NPI WskProviderNpi);
|
||||
|
||||
VOID
|
||||
WSKAPI
|
||||
WskReleaseProviderNPI(
|
||||
_In_ PWSK_REGISTRATION WskRegistration);
|
||||
|
||||
_Must_inspect_result_
|
||||
NTSTATUS
|
||||
WSKAPI
|
||||
WskQueryProviderCharacteristics(
|
||||
_In_ PWSK_REGISTRATION WskRegistration,
|
||||
_Out_ PWSK_PROVIDER_CHARACTERISTICS WskProviderCharacteristics);
|
||||
|
||||
VOID
|
||||
WSKAPI
|
||||
WskDeregister(
|
||||
_In_ PWSK_REGISTRATION WskRegistration);
|
||||
|
||||
|
|
Loading…
Reference in a new issue