码迷,mamicode.com
首页 > Windows程序 > 详细

Can a windows dll retrieve its own filename?

时间:2014-10-28 15:08:24      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   for   sp   div   

http://stackoverflow.com/questions/2043/can-a-windows-dll-retrieve-its-own-filename

A windows exe file has access to the command string which invoked it, including its path and filename. eg. 

C:\MyApp\MyApp.exe --help.

But this is not so for a dll invoked via LoadLibrary. Does anyone know of a way for a dll to find out what its path and filename is?

Specifically I‘m interested in a Delphi solution, but I suspect that the answer would be pretty much the same for any language.

I think you‘re looking for GetModuleFileName.

{
  If you are working on a DLL and are interested in the filename of the
  DLL rather than the filename of the application, then you can use this function:
}

function GetModuleName: string;
var
  szFileName: array[0..MAX_PATH] of Char;
begin
  FillChar(szFileName, SizeOf(szFileName), #0);
  GetModuleFileName(hInstance, szFileName, MAX_PATH);
  Result := szFileName;
end;

 

Can a windows dll retrieve its own filename?

标签:style   blog   http   io   color   ar   for   sp   div   

原文地址:http://www.cnblogs.com/shangdawei/p/4056725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!