added wxDynamicLibrary::GetSymbolAorW()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35003 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-07-29 22:27:13 +00:00
parent b7146cbec5
commit 93ed8ff770
4 changed files with 65 additions and 7 deletions

View File

@@ -32,6 +32,7 @@ wxMSW:
- Position of wxEVT_MOUSEWHEEL events is now in client, not screen, coordinates.
- Handle absence of wxListCtrl column image better (Zbigniew Zag<61>rski)
- Fixed asynchronous playback of large sound files in wxSound
- Added wxDynamicLibrary::GetSymbolAorW()
wxWinCE:

View File

@@ -103,6 +103,19 @@ contains no such symbol.
\helpref{wxDYNLIB\_FUNCTION}{wxdynlibfunction}
\membersection{wxDynamicLibrary::GetSymbolAorW}\label{wxdynamiclibrarygetsymbolaorw}
\constfunc{void *}{GetSymbolAorW}{\param{const wxString\& }{name}}
This function is available only under Windows as it is only useful when
dynamically loading symbols from standard Windows DLLs. Such functions have
either \texttt{'A'} (in ANSI build) or \texttt{'W'} (in Unicode, or wide
character build) suffix if they take string parameters. Using this function you
can use just the base name of the function and the correct suffix is appende
automatically depending on the current build. Otherwise, this method is
identical to \helpref{GetSymbol}{wxdynamiclibrarygetsymbol}.
\membersection{wxDynamicLibrary::GetProgramHandle}\label{wxdynamiclibrarygetprogramhandle}
\func{static wxDllType}{GetProgramHandle}{\void}