VirtualDub.h
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:1k
源码类别:

VC书籍

开发平台:

Visual C++

  1. // VirtualDub - Video processing and capture application
  2. // Copyright (C) 1998-2001 Avery Lee
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; either version 2 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with this program; if not, write to the Free Software
  16. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. #ifndef f_VIRTUALDUB_H
  18. #define f_VIRTUALDUB_H
  19. #include <crtdbg.h>
  20. #ifdef _DEBUG
  21. #define new_track new(_NORMAL_BLOCK, __FILE__, __LINE__)
  22. #define CHECK_FPU_STACK checkfpustack(__FILE__, __LINE__);
  23. extern void checkfpustack(const char *, const int) throw();
  24. #else
  25. #define new_track new
  26. #define CHECK_FPU_STACK
  27. #endif
  28. #if 0
  29. #define DEFINE_SP(var) void *var=0
  30. #define CHECK_STACK(var) stackcheck(var)
  31. #else
  32. #define DEFINE_SP(var)
  33. #define CHECK_STACK(var)
  34. #endif
  35. extern void stackcheck(void *&);
  36. void *allocmem(size_t);
  37. void freemem(void *);
  38. void *reallocmem(void *, size_t);
  39. void *callocmem(size_t, size_t);
  40. #define ENABLE_DIRECTDRAW_SUPPORT
  41. #endif