..\generic\$D\caret.obj \
..\generic\$D\choicdgg.obj \
..\generic\$D\colrdlgg.obj \
+ ..\generic\$D\dcbuffer.obj \
..\generic\$D\dcpsg.obj \
..\generic\$D\dirdlgg.obj \
..\generic\$D\dirctrlg.obj \
..\generic\$D\gridsel.obj \
..\generic\$D\helpext.obj \
..\generic\$D\helphtml.obj \
- ..\generic\$D\helpwxht.obj \
..\generic\$D\imaglist.obj \
..\generic\$D\laywin.obj \
..\generic\$D\listctrl.obj \
caret.obj \
choicdgg.obj \
colrdlgg.obj \
+ dcbuffer.obj \
dcpsg.obj \
dirdlgg.obj \
dirctrlg.obj \
gridsel.obj \
helpext.obj \
helphtml.obj \
- helpwxht.obj \
imaglist.obj \
laywin.obj \
listctrl.obj \
..\generic\$D\msgdlgg.obj
COMMONOBJS = \
+ ..\common\$D\artprov.obj \
+ ..\common\$D\artstd.obj \
..\common\$D\appcmn.obj \
..\common\$D\choiccmn.obj \
..\common\$D\clipcmn.obj \
..\common\$D\zstream.obj
COMLIBOBJS1 = \
+ artprov.obj \
+ artstd.obj \
appcmn.obj \
choiccmn.obj \
clipcmn.obj \
filename.obj \
filesys.obj \
fontcmn.obj \
- fontmap.obj \
- framecmn.obj \
- fs_inet.obj
+ fontmap.obj
COMLIBOBJS2 = \
+ framecmn.obj \
+ fs_inet.obj \
fs_mem.obj \
fs_zip.obj \
ftp.obj \
object.obj \
odbc.obj \
paper.obj \
- popupcmn.obj \
- prntbase.obj \
- process.obj
+ popupcmn.obj
COMLIBOBJS3 = \
+ prntbase.obj \
+ process.obj \
protocol.obj \
quantize.obj \
radiocmn.obj \
icc $(CPPFLAGS) $(MAKEPRECOMP) /Fo$D\dummydll.obj /Tp dummydll.cpp
$(COMLIBOBJS1):
+ copy ..\common\$D\artprov.obj
+ copy ..\common\$D\artstd.obj
copy ..\common\$D\appcmn.obj
copy ..\common\$D\choiccmn.obj
copy ..\common\$D\clipcmn.obj
copy ..\common\$D\filesys.obj
copy ..\common\$D\fontcmn.obj
copy ..\common\$D\fontmap.obj
- copy ..\common\$D\framecmn.obj
- copy ..\common\$D\fs_inet.obj
$(COMLIBOBJS2):
+ copy ..\common\$D\framecmn.obj
+ copy ..\common\$D\fs_inet.obj
copy ..\common\$D\fs_mem.obj
copy ..\common\$D\fs_zip.obj
copy ..\common\$D\ftp.obj
copy ..\common\$D\odbc.obj
copy ..\common\$D\paper.obj
copy ..\common\$D\popupcmn.obj
- copy ..\common\$D\prntbase.obj
- copy ..\common\$D\process.obj
$(COMLIBOBJS3):
+ copy ..\common\$D\prntbase.obj
+ copy ..\common\$D\process.obj
copy ..\common\$D\protocol.obj
copy ..\common\$D\quantize.obj
copy ..\common\$D\radiocmn.obj
copy ..\generic\$D\choicdgg.obj
copy ..\generic\$D\colrdlgg.obj
copy ..\generic\$D\dragimgg.obj
+ copy ..\generic\$D\dcbuffer.obj
copy ..\generic\$D\dcpsg.obj
copy ..\generic\$D\dirdlgg.obj
copy ..\generic\$D\dirctrlg.obj
copy ..\generic\$D\gridsel.obj
copy ..\generic\$D\helpext.obj
copy ..\generic\$D\helphtml.obj
- copy ..\generic\$D\helpwxht.obj
copy ..\generic\$D\imaglist.obj
copy ..\generic\$D\laywin.obj
copy ..\generic\$D\listctrl.obj
wxMenuItem::wxMenuItem(
wxMenu* pParentMenu
, int nId
-, const wxString& rText
-, const wxString& rStrHelp
-, wxItemKind kind
+, const wxString& rsText
+, const wxString& rsHelp
+, wxItemKind eKind
, wxMenu* pSubMenu
)
-: wxMenuItemBase(pParentMenu, nId, rText, rStrHelp, kind, pSubMenu)
+: wxMenuItemBase( pParentMenu
+ ,nId
+ ,rsText
+ ,rsHelp
+ ,eKind
+ ,pSubMenu
+ )
#if wxUSE_OWNER_DRAWN
-, wxOwnerDrawn( TextToLabel(rText)
- ,bCheckable
+, wxOwnerDrawn( TextToLabel(rsText)
+ ,eKind == wxITEM_CHECK
)
#endif // owner drawn
{
wxMenuItem::wxMenuItem(
wxMenu* pParentMenu
, int nId
-, const wxString& rText
-, const wxString& rStrHelp
+, const wxString& rsText
+, const wxString& rsHelp
, bool bIsCheckable
, wxMenu* pSubMenu
)
-: wxMenuItemBase(pParentMenu, nId, rText, rStrHelp, bIsCheckable ? kITEM_CHECK : kITEM_NORMAL, pSubMenu)
+: wxMenuItemBase( pParentMenu
+ ,nId
+ ,rsText
+ ,rsHelp
+ ,bIsCheckable ? wxITEM_CHECK : wxITEM_NORMAL
+ ,pSubMenu
+ )
#if wxUSE_OWNER_DRAWN
-, wxOwnerDrawn( TextToLabel(rText)
- ,bCheckable
+, wxOwnerDrawn( TextToLabel(rsText)
+ ,bIsCheckable
)
#endif // owner drawn
{
void wxMenuItem::Init()
{
- m_radioGroup.start = -1;
- m_isRadioGroupStart = FALSE;
+ m_vRadioGroup.m_nStart = -1;
+ m_bIsRadioGroupStart = FALSE;
#if wxUSE_OWNER_DRAWN
- // set default menu colors
+ //
+ // Set default menu colors
+ //
#define SYS_COLOR(c) (wxSystemSettings::GetColour(wxSYS_COLOUR_##c))
SetTextColour(SYS_COLOR(MENUTEXT));
#undef SYS_COLOR
- // we don't want normal items be owner-drawn
+ //
+ // We don't want normal items be owner-drawn
+ //
ResetOwnerDrawn();
- // tell the owner drawing code to to show the accel string as well
+ //
+ // Tell the owner drawing code to to show the accel string as well
+ //
SetAccelString(m_text.AfterFirst(_T('\t')));
#endif // wxUSE_OWNER_DRAWN
-}
+} // end of wxMenuItem::Init
wxMenuItem::~wxMenuItem()
{
if (m_isChecked == bCheck)
return;
- if (bCheck)
- bOk = (bool)::WinSendMsg( GetHMenuOf(m_parentMenu)
- ,MM_SETITEMATTR
- ,MPFROM2SHORT(GetRealId(), TRUE)
- ,MPFROM2SHORT(MIA_CHECKED, MIA_CHECKED)
- );
- else
- bOk = (bool)::WinSendMsg( GetHMenuOf(m_parentMenu)
- ,MM_SETITEMATTR
- ,MPFROM2SHORT(GetRealId(), TRUE)
- ,MPFROM2SHORT(MIA_CHECKED, FALSE)
- );
+ HMENU hMenu = GetHMenuOf(m_parentMenu);
+
+ if ( GetKind() == wxITEM_RADIO )
+ {
+ //
+ // It doesn't make sense to uncheck a radio item - what would this do?
+ //
+ if (!bCheck)
+ return;
+
+ //
+ // Get the index of this item in the menu
+ //
+ const wxMenuItemList& rItems = m_parentMenu->GetMenuItems();
+ int nPos = rItems.IndexOf(this);
+ int nStart;
+ int nEnd;
+
+ wxCHECK_RET( nPos != wxNOT_FOUND,
+ _T("menuitem not found in the menu items list?") );
+
+ //
+ // Get the radio group range
+ //
+
+ if (m_bIsRadioGroupStart)
+ {
+ // we already have all information we need
+ nStart = nPos;
+ nEnd = m_vRadioGroup.m_nEnd;
+ }
+ else // Next radio group item
+ {
+ //
+ // Get the radio group end from the start item
+ //
+ nStart = m_vRadioGroup.m_nStart;
+ nEnd = rItems.Item(nStart)->GetData()->m_vRadioGroup.m_nEnd;
+ }
+
+ //
+ // Also uncheck all the other items in this radio group
+ //
+ wxMenuItemList::Node* pNode = rItems.Item(nStart);
+
+ for (int n = nStart; n <= nEnd && pNode; n++)
+ {
+ if (n != nPos)
+ {
+ pNode->GetData()->m_isChecked = FALSE;
+ }
+
+ if (n == nPos)
+ {
+ bOk = (bool)::WinSendMsg( hMenu
+ ,MM_SETITEMATTR
+ ,MPFROM2SHORT(n, TRUE)
+ ,MPFROM2SHORT(MIA_CHECKED, MIA_CHECKED)
+ );
+ }
+ else
+ {
+ bOk = (bool)::WinSendMsg( hMenu
+ ,MM_SETITEMATTR
+ ,MPFROM2SHORT(n, TRUE)
+ ,MPFROM2SHORT(MIA_CHECKED, FALSE)
+ );
+ }
+ pNode = pNode->GetNext();
+ }
+ }
+ else // check item
+ {
+ if (bCheck)
+ bOk = (bool)::WinSendMsg( GetHMenuOf(m_parentMenu)
+ ,MM_SETITEMATTR
+ ,MPFROM2SHORT(GetRealId(), TRUE)
+ ,MPFROM2SHORT(MIA_CHECKED, MIA_CHECKED)
+ );
+ else
+ bOk = (bool)::WinSendMsg( GetHMenuOf(m_parentMenu)
+ ,MM_SETITEMATTR
+ ,MPFROM2SHORT(GetRealId(), TRUE)
+ ,MPFROM2SHORT(MIA_CHECKED, FALSE)
+ );
+ }
if (!bOk)
{
wxLogLastError("CheckMenuItem");
CODE LOADONCALL
EXPORTS
-;From library: F:\DEV\WX2\WXWINDOWS\LIB\wx.lib
+;From library: H:\DEV\WX2\WXWINDOWS\LIB\wx.lib
;From object file: dummy.cpp
;PUBDEFs (Symbols available from object file):
wxDummyChar
+ ;From object file: ..\common\artprov.cpp
+ ;PUBDEFs (Symbols available from object file):
+ ;wxArtProviderCache::GetBitmap(const wxString&,wxBitmap*)
+ GetBitmap__18wxArtProviderCacheFRC8wxStringP8wxBitmap
+ ;wxArtProviderCache::Clear()
+ Clear__18wxArtProviderCacheFv
+ ;wxConstructorForwxArtProviderModule()
+ wxConstructorForwxArtProviderModule__Fv
+ ;wxArtProvider::PopProvider()
+ PopProvider__13wxArtProviderFv
+ ;wxArtProvider::CleanUpProviders()
+ CleanUpProviders__13wxArtProviderFv
+ ;wxArtProviderCache::ConstructHashID(const wxString&,const wxString&,const wxSize&)
+ ConstructHashID__18wxArtProviderCacheFRC8wxStringT1RC6wxSize
+ __vft24wxwxArtProvidersListNode10wxNodeBase
+ ;wxArtProvider::GetBitmap(const wxString&,const wxString&,const wxSize&)
+ GetBitmap__13wxArtProviderFRC8wxStringT1RC6wxSize
+ ;wxArtProvider::RemoveProvider(wxArtProvider*)
+ RemoveProvider__13wxArtProviderFP13wxArtProvider
+ ;wxArtProvider::GetIcon(const wxString&,const wxString&,const wxSize&)
+ GetIcon__13wxArtProviderFRC8wxStringT1RC6wxSize
+ ;wxArtProviderModule::sm_classwxArtProviderModule
+ sm_classwxArtProviderModule__19wxArtProviderModule
+ ;wxArtProvider::PushProvider(wxArtProvider*)
+ PushProvider__13wxArtProviderFP13wxArtProvider
+ ;wxArtProvider::sm_providers
+ sm_providers__13wxArtProvider
+ ;wxArtProvider::sm_classwxArtProvider
+ sm_classwxArtProvider__13wxArtProvider
+ ;wxwxArtProvidersListNode::DeleteData()
+ DeleteData__24wxwxArtProvidersListNodeFv
+ ;wxArtProvider::sm_cache
+ sm_cache__13wxArtProvider
+ ;From object file: ..\common\artstd.cpp
+ ;PUBDEFs (Symbols available from object file):
+ g_ArtProviderModule
+ ;wxDefaultArtProviderModule::sm_classwxDefaultArtProviderModule
+ sm_classwxDefaultArtProviderModule__26wxDefaultArtProviderModule
+ __vft20wxDefaultArtProvider8wxObject
+ ;wxDefaultArtProvider::CreateBitmap(const wxString&,const wxString&,const wxSize&)
+ CreateBitmap__20wxDefaultArtProviderFRC8wxStringT1RC6wxSize
+ ;wxConstructorForwxDefaultArtProviderModule()
+ wxConstructorForwxDefaultArtProviderModule__Fv
;From object file: ..\common\appcmn.cpp
;PUBDEFs (Symbols available from object file):
;wxOnAssert(const char*,int,const char*)
wxEVT_NC_LEFT_DCLICK
wxEVT_INIT_DIALOG
wxEVT_COMMAND_SET_FOCUS
- ;From object file: F:\DEV\WX2\WXWINDOWS\src\common\extended.c
+ ;From object file: H:\DEV\WX2\WXWINDOWS\src\common\extended.c
;PUBDEFs (Symbols available from object file):
ConvertToIeeeExtended
ConvertFromIeeeExtended
Copy__7wxImageCFv
;wxImage::GetOptionInt(const wxString&) const
GetOptionInt__7wxImageCFRC8wxString
+ ;wxImage::SaveFile(const wxString&) const
+ SaveFile__7wxImageCFRC8wxString
;wxImage::SaveFile(wxOutputStream&,const wxString&) const
SaveFile__7wxImageCFR14wxOutputStreamRC8wxString
;wxImage::FindHandlerMime(const wxString&)
SetHelpString__13wxMenuBarBaseFiRC8wxString
;wxMenuBase::Insert(unsigned int,wxMenuItem*)
Insert__10wxMenuBaseFUiP10wxMenuItem
+ ;wxMenuItemBase::wxMenuItemBase(wxMenu*,int,const wxString&,const wxString&,wxItemKind,wxMenu*)
+ __ct__14wxMenuItemBaseFP6wxMenuiRC8wxStringT310wxItemKindT1
;wxMenuBase::Remove(wxMenuItem*)
Remove__10wxMenuBaseFP10wxMenuItem
;wxMenuBase::IsChecked(int) const
Read32__17wxTextInputStreamFv
;wxTextInputStream::SkipIfEndOfLine(char)
SkipIfEndOfLine__17wxTextInputStreamFc
- ;From object file: F:\DEV\WX2\WXWINDOWS\src\common\unzip.c
+ ;From object file: H:\DEV\WX2\WXWINDOWS\src\common\unzip.c
;PUBDEFs (Symbols available from object file):
unzReadCurrentFile
unzGetCurrentFileInfo
CalculateMeasurements__21wxGenericColourDialogFv
;wxGenericColourDialog::sm_classwxGenericColourDialog
sm_classwxGenericColourDialog__21wxGenericColourDialog
+ ;From object file: ..\generic\dcbuffer.cpp
+ ;PUBDEFs (Symbols available from object file):
+ __vft17wxBufferedPaintDC8wxObject
+ ;wxBufferedDC::wxBufferedDC(wxDC*,const wxBitmap&)
+ __ct__12wxBufferedDCFP4wxDCRC8wxBitmap
+ ;wxBufferedPaintDC::wxBufferedPaintDC(wxWindow*,const wxBitmap&)
+ __ct__17wxBufferedPaintDCFP8wxWindowRC8wxBitmap
+ ;wxBufferedDC::~wxBufferedDC()
+ __dt__12wxBufferedDCFv
+ __vft12wxBufferedDC8wxObject
+ ;wxBufferedDC::wxBufferedDC(wxDC*,const wxSize&)
+ __ct__12wxBufferedDCFP4wxDCRC6wxSize
+ ;wxBufferedDC::UnMask()
+ UnMask__12wxBufferedDCFv
+ ;wxBufferedDC::Init(wxDC*,const wxBitmap&)
+ Init__12wxBufferedDCFP4wxDCRC8wxBitmap
+ ;wxBufferedDC::Init(wxDC*,const wxSize&)
+ Init__12wxBufferedDCFP4wxDCRC6wxSize
+ ;wxBufferedPaintDC::~wxBufferedPaintDC()
+ __dt__17wxBufferedPaintDCFv
;From object file: ..\generic\dcpsg.cpp
;PUBDEFs (Symbols available from object file):
__vft23wxPostScriptPrintDialog8wxObject
LoadFile__24wxHTMLHelpControllerBaseFRC8wxString
;wxHTMLHelpControllerBase::KeywordSearch(const wxString&)
KeywordSearch__24wxHTMLHelpControllerBaseFRC8wxString
- ;From object file: ..\generic\helpwxht.cpp
- ;PUBDEFs (Symbols available from object file):
- ;wxHelpControllerHtml::GetFrameParameters(wxSize*,wxPoint*,unsigned long*)
- GetFrameParameters__20wxHelpControllerHtmlFP6wxSizeP7wxPointPUl
- __vft20wxHelpControllerHtml8wxObject
- ;wxHelpFrame::sm_eventTable
- sm_eventTable__11wxHelpFrame
- ;wxHelpFrame::OnButton(wxCommandEvent&)
- OnButton__11wxHelpFrameFR14wxCommandEvent
- ;wxHelpControllerHtml::sm_classwxHelpControllerHtml
- sm_classwxHelpControllerHtml__20wxHelpControllerHtml
- __vft11wxHelpFrame8wxObject
- ;wxHelpFrame::OnClose(wxCloseEvent&)
- OnClose__11wxHelpFrameFR12wxCloseEvent
- ;wxHelpControllerHtml::wxHelpControllerHtml()
- __ct__20wxHelpControllerHtmlFv
- ;wxHelpControllerHtml::~wxHelpControllerHtml()
- __dt__20wxHelpControllerHtmlFv
- ;wxHelpControllerHtml::DisplayHelp(const wxString&)
- DisplayHelp__20wxHelpControllerHtmlFRC8wxString
- ;wxHelpFrame::wxHelpFrame(wxWindow*,int,const wxString&,const wxPoint&,const wxSize&,wxHelpControllerHtml*)
- __ct__11wxHelpFrameFP8wxWindowiRC8wxStringRC7wxPointRC6wxSizeP20wxHelpControllerHtml
- ;wxHelpFrame::GetEventTable() const
- GetEventTable__11wxHelpFrameCFv
- ;wxHelpControllerHtml::SetFrameParameters(const wxString&,const wxSize&,const wxPoint&,unsigned long)
- SetFrameParameters__20wxHelpControllerHtmlFRC8wxStringRC6wxSizeRC7wxPointUl
- ;wxHelpFrame::sm_eventTableEntries
- sm_eventTableEntries__11wxHelpFrame
- ;wxHelpFrame::~wxHelpFrame()
- __dt__11wxHelpFrameFv
;From object file: ..\generic\imaglist.cpp
;PUBDEFs (Symbols available from object file):
__vft11wxImageList8wxObject
sm_eventTable__23wxGenericScrolledWindow
;wxAutoScrollTimer::wxAutoScrollTimer(wxWindow*,wxScrollHelper*,int,int,int)
__ct__17wxAutoScrollTimerFP8wxWindowP14wxScrollHelperiN23
+ ;wxScrollHelper::DoCalcUnscrolledPosition(int,int,int*,int*) const
+ DoCalcUnscrolledPosition__14wxScrollHelperCFiT1PiT3
;wxScrollHelper::HandleOnScroll(wxScrollWinEvent&)
HandleOnScroll__14wxScrollHelperFR16wxScrollWinEvent
__vft17wxAutoScrollTimer8wxObject
GetEventTable__23wxGenericScrolledWindowCFv
;wxGenericScrolledWindow::Create(wxWindow*,int,const wxPoint&,const wxSize&,long,const wxString&)
Create__23wxGenericScrolledWindowFP8wxWindowiRC7wxPointRC6wxSizelRC8wxString
- ;wxScrollHelper::CalcUnscrolledPosition(int,int,int*,int*) const
- CalcUnscrolledPosition__14wxScrollHelperCFiT1PiT3
- ;wxScrollHelper::CalcScrolledPosition(int,int,int*,int*) const
- CalcScrolledPosition__14wxScrollHelperCFiT1PiT3
+ ;wxScrollHelper::DoCalcScrolledPosition(int,int,int*,int*) const
+ DoCalcScrolledPosition__14wxScrollHelperCFiT1PiT3
;wxScrollHelper::HandleOnMouseEnter(wxMouseEvent&)
HandleOnMouseEnter__14wxScrollHelperFR12wxMouseEvent
;wxScrollHelper::HandleOnMouseLeave(wxMouseEvent&)
;wxGenericTreeCtrl::FillArray(wxGenericTreeItem*,wxArrayTreeItemIds&) const
FillArray__17wxGenericTreeCtrlCFP17wxGenericTreeItemR18wxArrayTreeItemIds
;From object file: ..\generic\treelay.cpp
- ;From object file: ..\generic\wizard.cpp
;From object file: ..\html\helpctrl.cpp
;PUBDEFs (Symbols available from object file):
;wxHtmlHelpController::DisplayTextPopup(const wxString&,const wxPoint&)
;wxMsgArray::RemoveAt(unsigned int)
RemoveAt__10wxMsgArrayFUi
wxGetInstance
- ;wxApp::GetStdIcon(int) const
- GetStdIcon__5wxAppCFi
;wxMsgArray::~wxMsgArray()
__dt__10wxMsgArrayFv
wxSTD_MDIPARENTFRAME_ICON
GetRealId__10wxMenuItemCFv
;wxMenuItem::SetCheckable(unsigned long)
SetCheckable__10wxMenuItemFUl
- ;wxMenuItemBase::New(wxMenu*,int,const wxString&,const wxString&,unsigned long,wxMenu*)
- New__14wxMenuItemBaseFP6wxMenuiRC8wxStringT3UlT1
+ ;wxMenuItem::SetRadioGroupEnd(int)
+ SetRadioGroupEnd__10wxMenuItemFi
;wxMenuItem::IsChecked() const
IsChecked__10wxMenuItemCFv
+ ;wxMenuItem::SetAsRadioGroupStart()
+ SetAsRadioGroupStart__10wxMenuItemFv
;wxMenuItemBase::GetLabelFromText(const wxString&)
GetLabelFromText__14wxMenuItemBaseFRC8wxString
;wxMenuItem::SetText(const wxString&)
SetText__10wxMenuItemFRC8wxString
+ ;wxMenuItemBase::New(wxMenu*,int,const wxString&,const wxString&,wxItemKind,wxMenu*)
+ New__14wxMenuItemBaseFP6wxMenuiRC8wxStringT310wxItemKindT1
+ ;wxMenuItem::wxMenuItem(wxMenu*,int,const wxString&,const wxString&,wxItemKind,wxMenu*)
+ __ct__10wxMenuItemFP6wxMenuiRC8wxStringT310wxItemKindT1
;wxMenuItem::Check(unsigned long)
Check__10wxMenuItemFUl
__vft10wxMenuItem8wxObject
;wxMenuItem::wxMenuItem(wxMenu*,int,const wxString&,const wxString&,unsigned long,wxMenu*)
__ct__10wxMenuItemFP6wxMenuiRC8wxStringT3UlT1
+ ;wxMenuItem::SetRadioGroupStart(int)
+ SetRadioGroupStart__10wxMenuItemFi
;wxConstructorForwxMenuItem()
wxConstructorForwxMenuItem__Fv
;wxMenuItem::~wxMenuItem()
__dt__10wxMenuItemFv
;wxMenuItem::Enable(unsigned long)
Enable__10wxMenuItemFUl
+ ;wxMenuItem::Init()
+ Init__10wxMenuItemFv
__vft10wxMenuItem12wxOwnerDrawn
;From object file: ..\os2\metafile.cpp
;PUBDEFs (Symbols available from object file):
wxGetEnv__FRC8wxStringP8wxString
;From object file: ..\os2\utilsexc.cpp
;PUBDEFs (Symbols available from object file):
- ;wxExecute(char**,unsigned long,wxProcess*)
- wxExecute__FPPcUlP9wxProcess
- ;wxExecute(const wxString&,unsigned long,wxProcess*)
- wxExecute__FRC8wxStringUlP9wxProcess
+ ;wxExecute(char**,int,wxProcess*)
+ wxExecute__FPPciP9wxProcess
;wxGetFullHostName(char*,int)
wxGetFullHostName__FPci
wxExecuteWindowCbk
+ ;wxExecute(const wxString&,int,wxProcess*)
+ wxExecute__FRC8wxStringiP9wxProcess
;From object file: ..\os2\wave.cpp
;PUBDEFs (Symbols available from object file):
;wxWave::Create(const wxString&,unsigned long)