mirror of https://github.com/tongzx/nt5src
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.
36 lines
494 B
36 lines
494 B
/*++
|
|
|
|
Copyright (c) 2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
odbccp32.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(CPlApplet)
|