Leaked source code of windows server 2003
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
962 B

  1. /*
  2. * N O N I M P L . C P P
  3. *
  4. * Base classes for COM interfaces with no functionality except IUnknown.
  5. *
  6. * Copyright 1986-1997 Microsoft Corporation, All Rights Reserved
  7. */
  8. #pragma warning(disable:4201) /* nameless struct/union */
  9. #pragma warning(disable:4514) /* unreferenced inline function */
  10. #include <windows.h>
  11. #include <windowsx.h>
  12. #include <ole2.h>
  13. #include <nonimpl.h>
  14. // CStreamNonImpl class ------------------------------------------------------
  15. //
  16. BEGIN_INTERFACE_TABLE(CStreamNonImpl)
  17. INTERFACE_MAP(CStreamNonImpl, IStream)
  18. END_INTERFACE_TABLE(CStreamNonImpl);
  19. EXO_GLOBAL_DATA_DECL(CStreamNonImpl, EXO);
  20. // CPersistStreamInitNonImpl class -----------------------------------------------
  21. //
  22. BEGIN_INTERFACE_TABLE(CPersistStreamInitNonImpl)
  23. INTERFACE_MAP(CPersistStreamInitNonImpl, IPersistStreamInit)
  24. END_INTERFACE_TABLE(CPersistStreamInitNonImpl);
  25. EXO_GLOBAL_DATA_DECL(CPersistStreamInitNonImpl, EXO);