37 lines
494 B
C
37 lines
494 B
C
|
/*++
|
||
|
|
||
|
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)
|