我正在使用没有完整功能的MinGW。例如。它不支持wchar_t流。
我设法通过编写一组微型操纵器(下面的代码中的wcusT())解决了这个问题。但是我发现GetModuleFileNameEx再次使我陷入困境。
我无法本地运行GetModuleFileNameEx()
此功能在<psapi.h>中定义,但似乎没有任何链接。这是我的第一个问题:MinGW是否可以运行GetModuleFileNameEx?我需要做什么?我是否缺少简单的东西?
解决方法是,我尝试通过调用Windows system32文件夹中的dll(psapi.dll)间接运行它的方法...但是出了点问题。
我还有另一种不可行的情况。我会很感激下面的代码..谢谢

int WINAPI WinMain (HINSTANCE hThisInstance, HINSTANCE hPrevInstance, LPSTR lpszArgument, int nCmdShow)
{ /// typedef and load a dll function
  /// ===============================
  typedef DWORD (__stdcall *foo)(HANDLE, HMODULE, LPTSTR, DWORD);
  LPTSTR  ptcPSAPI_DLL = _T("C:\\WINDOWS\\system32\\psapi.dll");
  HMODULE   hPSAPI_DLL = LoadLibrary(ptcPSAPI_DLL);
  if( !hPSAPI_DLL )
  { std::cout<<"ERROR: Failed to load "<<wcusT(ptcPSAPI_DLL)<<std::endl;
    return 1;
  }
  foo GetModFnEx=(foo)GetProcAddress(hPSAPI_DLL,
                  #ifdef  UNICODE
                         "GetModuleFileNameExW");
                  #else
                         "GetModuleFileNameExA");
                  #endif

  /// call the dll library function
  /// =============================
  HWND   hWndNPP = FindWindow(_T("Notepad++"),NULL); // the window calass name
  TCHAR  ytcMFqFn[FILENAME_MAX]; // the buffer for the file name
  DWORD  dwBytes = (GetModFnEx)( hWndNPP, NULL, ytcMFqFn, sizeof(ytcMFqFn) );
  DWORD  dwError = GetLastError();

  std::cout<<wcusT(_T("hWndNPP  "))<<"="<<hWndNPP        <<"="<<std::endl;
  std::cout<<wcusT(_T("ytcMFqFn "))<<"="<<wcusT(ytcMFqFn)<<"="<<std::endl;
  std::cout<<wcusT(_T("dwBytes  "))<<"="<<dwBytes        <<"="<<std::endl;
  std::cout<<wcusT(_T("dwError  "))<<"="<<dwBytes        <<"="<<std::endl;
  return 0;

  // Output ===============
  // SBCS
  //   hWndNPP  =0x320606=
  //   ytcMFqFn ==
  //   dwBytes  =0=
  //   dwError  =0=
  // UNICODE
  //   h W n d N P P     =0x320606=
  //   y t c M F q F n   =(☻æ|♀ =
  //   d w B y t e s     =0=
  //   d w E r r o r     =0=
  //  ======================

最佳答案

您调用GetModuleFileNameEx错误

HWND   hWndNPP = FindWindow(_T("Notepad++"),NULL);
DWORD  dwBytes = (GetModFnEx)( hWndNPP // this is ment to be a process handle, not a HWND
  , NULL, ytcMFqFn, sizeof(ytcMFqFn) );


MSDN doc on GetModuleFileNameEx

您可以尝试使用以下方法之一获取过程句柄

::GetWindowThreadProcessId(hWnd, &dwProcessID);
HANDLE hProcess = ::OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, dwProcessID);

// also in PSAPI - EnumProcesses will return an array of app process ids
(BOOL(WINAPI *)(DWORD *,DWORD, DWORD *)) GetProcAddress( psapi, "EnumProcesses" );

关于c++ - 通过psapi.dll调用GetModuleFileNameEx无法正常工作,但是为什么呢?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3232257/

10-11 19:35