app/text/makefile.msc (new file) */makefile.msc */*/makefile.msc : updated

2003-03-03  Hans Breuer  <hans@breuer.org>

	* app/text/makefile.msc (new file)
	  */makefile.msc */*/makefile.msc : updated

	* app/core/gimpdata.c : define access() constants
	for G_OS_WIN32 case

	* app/text/gimptext.c : <stdlib.h> for getenv()

	* libgimp/gimp.def libgimp/gimpui.def : updated externals

	* libgimpwidgets/libgimp-glue.c : make dynamic_resolve
	actually work again for 'my' DLL naming convention

	* plug-ins/gap/gap_pdb_calls.c : reflect renaming
	of GIMP_VERTICAL to GIMP_ORIENTATION_VERTICAL
This commit is contained in:
Hans Breuer
2003-03-03 18:14:31 +00:00
committed by Hans Breuer
parent 6bfa4f54a0
commit 594bccd558
21 changed files with 214 additions and 31 deletions

View File

@ -83,7 +83,7 @@ dynamic_resolve (const gchar* name, HMODULE* hMod)
*hMod = LoadLibrary ("libgimp-" LT_RELEASE "-" LT_CURRENT_MINUS_AGE ".dll");
#endif
/* If that didn't work, try the name style used by Hans Breuer */
if (!hMod)
if (!*hMod)
*hMod = LoadLibrary ("gimp-1.3.dll");
fn = GetProcAddress (*hMod, name);
}