41 lines
603 B
C
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)
|