Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

40 lines
603 B

/*++
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)