Error.h
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:2k
源码类别:

多媒体编程

开发平台:

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_ERROR_H
  18. #define f_ERROR_H
  19. #include <windows.h>
  20. #include <vfw.h>
  21. class MyError {
  22. protected:
  23. char *buf;
  24. public:
  25. MyError(MyError& err);
  26. MyError();
  27. MyError(const char *f, ...);
  28. ~MyError();
  29. void setf(const char *f, ...);
  30. void vsetf(const char *f, va_list val);
  31. void post(HWND hWndParent, const char *title);
  32. char *gets() {
  33. return buf;
  34. }
  35. void discard();
  36. };
  37. class MyICError : public MyError {
  38. public:
  39. MyICError(const char *s, DWORD icErr);
  40. };
  41. class MyMMIOError : public MyError {
  42. public:
  43. MyMMIOError(const char *s, DWORD icErr);
  44. };
  45. class MyAVIError : public MyError {
  46. public:
  47. MyAVIError(const char *s, DWORD aviErr);
  48. };
  49. class MyMemoryError : public MyError {
  50. public:
  51. MyMemoryError();
  52. };
  53. class MyWin32Error : public MyError {
  54. public:
  55. MyWin32Error(const char *format, DWORD err, ...);
  56. };
  57. class MyCrashError : public MyError {
  58. public:
  59. MyCrashError(const char *format, DWORD dwExceptionCode);
  60. };
  61. class MyUserAbortError : public MyError {
  62. public:
  63. MyUserAbortError();
  64. };
  65. #endif