Dump.dpr
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. // *****************************************************************************
  2. // Author: komarov andrey.
  3. // Email: komar@elecard.net.ru
  4. // This filter is a useful debugging tool. For example, you can verify,
  5. // bit by bit, the results of a transform filter. You can build a graph
  6. // manually by using GraphEdit, and connect the Dump filter to the output
  7. // of a transform filter or any other output pin.
  8. // *****************************************************************************
  9. library Dump;
  10. uses
  11.   BaseClass,
  12.   Main in 'Main.pas';
  13. {$R *.RES}
  14. {$E ax}
  15. exports
  16.   DllGetClassObject,
  17.   DllCanUnloadNow,
  18.   DllRegisterServer,
  19.   DllUnregisterServer;
  20. begin
  21. end.