include wx/msw/wrapwin.h instead of entire private.h; unTABbed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26599 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-04-04 12:54:54 +00:00
parent 7c8c7cc23e
commit 5fccb5b4fd

View File

@@ -30,7 +30,7 @@
#if wxUSE_DYNLIB_CLASS #if wxUSE_DYNLIB_CLASS
#if defined(__WINDOWS__) #if defined(__WINDOWS__)
#include "wx/msw/private.h" #include "wx/msw/wrapwin.h"
#endif #endif
#include "wx/dynlib.h" #include "wx/dynlib.h"
@@ -75,13 +75,13 @@ void TranslateError(const char *path, int number)
unsigned int index; unsigned int index;
static char *OFIErrorStrings[] = static char *OFIErrorStrings[] =
{ {
"%s(%d): Object Image Load Failure\n", "%s(%d): Object Image Load Failure\n",
"%s(%d): Object Image Load Success\n", "%s(%d): Object Image Load Success\n",
"%s(%d): Not an recognisable object file\n", "%s(%d): Not an recognisable object file\n",
"%s(%d): No valid architecture\n", "%s(%d): No valid architecture\n",
"%s(%d): Object image has an invalid format\n", "%s(%d): Object image has an invalid format\n",
"%s(%d): Invalid access (permissions?)\n", "%s(%d): Invalid access (permissions?)\n",
"%s(%d): Unknown error code from NSCreateObjectFileImageFromFile\n", "%s(%d): Unknown error code from NSCreateObjectFileImageFromFile\n",
}; };
#define NUM_OFI_ERRORS (sizeof(OFIErrorStrings) / sizeof(OFIErrorStrings[0])) #define NUM_OFI_ERRORS (sizeof(OFIErrorStrings) / sizeof(OFIErrorStrings[0]))
@@ -106,13 +106,13 @@ void *dlopen(const char *path, int WXUNUSED(mode) /* mode is ignored */)
dyld_result = NSCreateObjectFileImageFromFile(path, &ofile); dyld_result = NSCreateObjectFileImageFromFile(path, &ofile);
if (dyld_result != NSObjectFileImageSuccess) if (dyld_result != NSObjectFileImageSuccess)
{ {
TranslateError(path, dyld_result); TranslateError(path, dyld_result);
} }
else else
{ {
// NSLinkModule will cause the run to abort on any link error's // NSLinkModule will cause the run to abort on any link error's
// not very friendly but the error recovery functionality is limited. // not very friendly but the error recovery functionality is limited.
handle = NSLinkModule(ofile, path, NSLINKMODULE_OPTION_BINDNOW); handle = NSLinkModule(ofile, path, NSLINKMODULE_OPTION_BINDNOW);
} }
return handle; return handle;
@@ -132,11 +132,11 @@ void *dlsym(void *handle, const char *symbol)
if ( nsSymbol) if ( nsSymbol)
{ {
addr = NSAddressOfSymbol(nsSymbol); addr = NSAddressOfSymbol(nsSymbol);
} }
else else
{ {
addr = NULL; addr = NULL;
} }
return addr; return addr;
} }