1.我建立了一个DLL,{$R MyBMP.RES}包含了一个图片M.BMP
2.然后我在这个DLL中Exports了一个函数:
function GetMyBMP:HBITMAP;stdcall;
begin
  result:=LoadBitmap(HInstance,'MyBMP');
end;
3.然后我在调用程序用静态调用
function GetMyBMP:HBITMAP:stdcall;external 'MyDLL.DLL';Button1.OnClick
begin
  Image1.Picture.Bitmap.Handle:=GetMyBMP;
end;我参看了Win32 Developer's References HELP 关于LoadBitmap的有关章节,其中
有这么一句:
The application must call the DeleteObject function to delete each bitmap handle returned by the LoadBitmap function. 
我参看了论坛了有关LoadBitmap的主题,使用完LoadBitmap后,
好像都没有使用DeleteObject方法.问题:上面我的代码会造成内存泄漏吗?如果泄漏的话,如何改正?