windows-nt/Source/XPSP1/NT/enduser/stuff/asycfilt/asycfilt.c
2020-09-26 16:20:57 +08:00

38 lines
528 B
C

/*++
Copyright (c) 2001 Microsoft Corporation
Module Name:
hlink.c
Abstract:
This module implements stub functions for shell32 interfaces.
Author:
David N. Cutler (davec) 1-Mar-2001
Environment:
Kernel mode only.
Revision History:
--*/
#include "windows.h"
#define STUBFUNC(x) \
int \
x( \
void \
) \
{ \
return 0; \
}
STUBFUNC(DllCanUnloadNow)
STUBFUNC(FilterCreateInstance)