你在動態鏈接庫中要定義函數pbGetRawImage(OUT void *image);加上stdcall;<br>在export下面加上函數的名稱<br>在調用前先定義一個函數類型<br>type Tfunction=procedure(OUT void *image);注意形式要和你調用的函數一樣。<br>定義一個變量AFunction:Tfunction;<br>然後在程序中聯結動態鏈接庫。<br>var<br> HInst:THandle;<br> FPointer:TFarProc;<br>HInst:=loadlibrary('動態鏈接庫的名字');<br>if HInst>0<br> FPointer:=GetProcAddress(HInst,Pchar'pbGetRawImage');<br>if FPointer<>nil th en<br> AFunction:=Tfunction(FPointer);<br>這樣在程序中使用AFunction就可以調用動態鏈接庫中的這個函數了