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.
32 lines
464 B
32 lines
464 B
/*++
|
|
|
|
Copyright (c) 2000-2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Excluded.cpp
|
|
|
|
Abstract:
|
|
|
|
This DLL is being excluded from the applied shim to GetCommandLine() API.
|
|
|
|
Author:
|
|
|
|
Diaa Fathalla (DiaaF) 27-Nov-2000
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _SMVDDLL_H_
|
|
#define _SMVDDLL_H_
|
|
|
|
#ifdef __cplusplus
|
|
#define EXPORT extern "C" __declspec (dllexport)
|
|
#else
|
|
#define EXPORT __declspec (dllexport)
|
|
#endif
|
|
|
|
EXPORT BOOL WINAPI DDLLTestGetCommandLine();
|
|
|
|
#endif
|