CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    Getting linked process name from a DLL

    How can I get the exe filename of the processes that are getting linked to my DLL.


  2. #2
    Guest

    Re: Getting linked process name from a DLL

    char Buffer[_MAX_PATH];
    GetModuleFileName(NULL,Buffer,sizeof(Buffer)-1);



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured