怎么在perl里面调用c写的dll文件呢?

怎么在perl里面调用c写的dll文件呢?
各位老大:
现在我想在perl里面调用一个用c写的接口,这个接口是使用dll文件的形式给出的,我使用了下面代码:use Win32::API;
Win32::API->import('C:/ucom/UTSphoneWrapper.dll',"int checkState(unsigned id, char *state)");

但是失败了,找不到文件,请问该怎么办呢?