GetModuleFileName32A() returns long filename if app sets osversion >=

4.0. Also moved the long filename hackery to GetLongPathName32A() so
it can be used by win32 programs.
This commit is contained in:
Alexander Larsson 1998-10-11 13:59:08 +00:00 committed by Alexandre Julliard
parent c1190fe2b4
commit d235b137a8

View file

@ -256,7 +256,7 @@ HMODULE32 MODULE_FindModule32(
LPSTR xlname,xdotptr;
assert (wm->longname);
xlname = strrchr(wm->longname,'/');
xlname = strrchr(wm->longname,'\\');
if (!xlname)
xlname = wm->longname;
else
@ -636,21 +636,14 @@ DWORD WINAPI GetModuleFileName32A(
DWORD size /* [in] size of filenamebuffer */
) {
WINE_MODREF *wm = MODULE32_LookupHMODULE(PROCESS_Current(),hModule);
char *p;
if (!wm) /* can happen on start up or the like */
return 0;
/* FIXME: we should probably get a real long name, but wm->longname
* is currently a UNIX filename!
* Use the module name to at least get the long version of the filename.
*/
lstrcpyn32A( lpFileName, wm->shortname, size );
if ( (p = strrchr( lpFileName, '\\' )) ) {
p++;
size -= (p-lpFileName);
lstrcpyn32A( p, wm->modname, size);
}
if (PE_HEADER(wm->module)->OptionalHeader.MajorOperatingSystemVersion >= 4.0)
lstrcpyn32A( lpFileName, wm->longname, size );
else
lstrcpyn32A( lpFileName, wm->shortname, size );
TRACE(module, "%s\n", lpFileName );
return strlen(lpFileName);