我在网上下载了个能实现“繁简转换”的函数包c.pas,我将其在delphi中安装成功了。cvcode.pas 的前几句是
unit CVCode;
interface
function GBtoBIG5(value: string): string;我在程序中这样调用
uses .............................,cvcode;
type
  TForm1 = class(TForm)
  cvcode1:Tcvcode;
  private
  function cvcodeGBtoBIG5(value: string): string;
可是在"cvcode1:Tcvcode"一句处总是提示"[Error] Unit1.pas(11): Undeclared identifier: 'Tcvcode'
明明我已经声明cvcode了为什么还是错呀?
请问如果我想调用其中的函数GBtoBIG5(value: string): 除了在uses 中包含cbcode外,我还应该怎么调用呀?