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

41 lines
603 B
C

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