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.

55 lines
1.1 KiB

  1. /**************************************************************************
  2. * *
  3. * Copyright (C) 1992, Silicon Graphics, Inc. *
  4. * *
  5. * These coded instructions, statements, and computer programs contain *
  6. * unpublished proprietary information of Silicon Graphics, Inc., and *
  7. * are protected by Federal copyright law. They may not be disclosed *
  8. * to third parties or copied or duplicated in any form, in whole or *
  9. * in part, without the prior written consent of Silicon Graphics, Inc. *
  10. * *
  11. **************************************************************************/
  12. /*
  13. * cachingeval.c++ - $Revision: 1.1 $
  14. */
  15. #include "cachinge.h"
  16. int
  17. CachingEvaluator::canRecord( void )
  18. {
  19. return 0;
  20. }
  21. int
  22. CachingEvaluator::canPlayAndRecord( void )
  23. {
  24. return 0;
  25. }
  26. int
  27. CachingEvaluator::createHandle( int )
  28. {
  29. return 0;
  30. }
  31. void
  32. CachingEvaluator::beginOutput( ServiceMode, int )
  33. {
  34. }
  35. void
  36. CachingEvaluator::endOutput( void )
  37. {
  38. }
  39. void
  40. CachingEvaluator::discardRecording( int )
  41. {
  42. }
  43. void
  44. CachingEvaluator::playRecording( int )
  45. {
  46. }