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.

31 lines
438 B

  1. /*++
  2. Copyright (c) 2000-2001 Microsoft Corporation
  3. Module Name:
  4. Excluded.cpp
  5. Abstract:
  6. This DLL is implicitly linked with SMVTest.exe.
  7. Author:
  8. Diaa Fathalla (DiaaF) 27-Nov-2000
  9. Revision History:
  10. --*/
  11. #ifndef _SMVSDLL_H_
  12. #define _SMVSDLL_H_
  13. #ifdef __cplusplus
  14. #define EXPORT extern "C" __declspec (dllexport)
  15. #else
  16. #define EXPORT __declspec (dllexport)
  17. #endif
  18. EXPORT BOOL WINAPI SDLLTestGetCommandLine();
  19. #endif