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
596 B

  1. /*++
  2. Copyright (c) 2000-2001 Microsoft Corporation
  3. Module Name:
  4. Excluded.h
  5. Abstract:
  6. This DLL is being excluded from the applied shim to GetCommandLine() API.
  7. Author:
  8. Diaa Fathalla (DiaaF) 27-Nov-2000
  9. Revision History:
  10. --*/
  11. #ifndef _EXCLUDED_H_
  12. #define _EXCLUDED_H_
  13. #ifdef EXCLUDED_EXPORTS
  14. #define EXCLUDED_API extern "C" __declspec(dllexport)
  15. #else
  16. #define EXCLUDED_API extern "C" __declspec(dllimport)
  17. #endif
  18. //
  19. // Functions Prototypes
  20. //
  21. BOOL Initialize();
  22. BOOL Uninitialize();
  23. //
  24. // Exported Functions
  25. //
  26. EXCLUDED_API LPTSTR NOT_HOOKEDGetCommandLine(void);
  27. #endif