mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 21:28:51 +00:00
Add the ability to generate a files MD5sum.
This adds the ability to generate a files MD5sum in the ISO properties. This uses polarssl to generate the MD5Sum.
This commit is contained in:
parent
b106dbc96e
commit
a30a528dd1
2 changed files with 67 additions and 7 deletions
|
@ -95,6 +95,8 @@ private:
|
|||
wxTextCtrl *m_Revision;
|
||||
wxTextCtrl *m_Date;
|
||||
wxTextCtrl *m_FST;
|
||||
wxTextCtrl *m_MD5Sum;
|
||||
wxButton *m_MD5SumCompute;
|
||||
wxArrayString arrayStringFor_Lang;
|
||||
wxChoice *m_Lang;
|
||||
wxTextCtrl *m_ShortName;
|
||||
|
@ -154,6 +156,8 @@ private:
|
|||
ID_REVISION,
|
||||
ID_DATE,
|
||||
ID_FST,
|
||||
ID_MD5SUM,
|
||||
ID_MD5SUMCOMPUTE,
|
||||
ID_VERSION,
|
||||
ID_LANG,
|
||||
ID_SHORTNAME,
|
||||
|
@ -176,6 +180,7 @@ private:
|
|||
void OnClose(wxCloseEvent& event);
|
||||
void OnCloseClick(wxCommandEvent& event);
|
||||
void OnEditConfig(wxCommandEvent& event);
|
||||
void OnComputeMD5Sum(wxCommandEvent& event);
|
||||
void OnShowDefaultConfig(wxCommandEvent& event);
|
||||
void ListSelectionChanged(wxCommandEvent& event);
|
||||
void PatchButtonClicked(wxCommandEvent& event);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue