mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
23 lines
471 B
C++
23 lines
471 B
C++
#pragma once
|
|
|
|
#include "TextInputDialog.h"
|
|
#include "../Crypto/aes.h"
|
|
#include "../Crypto/sha1.h"
|
|
|
|
class FnIdGenerator : public wxDialog
|
|
{
|
|
private:
|
|
std::vector<std::string> m_func_name;
|
|
std::vector<u32> m_func_id;
|
|
wxListView* m_list;
|
|
|
|
public:
|
|
FnIdGenerator(wxWindow* parent);
|
|
~FnIdGenerator();
|
|
|
|
void OnInput(wxCommandEvent &event);
|
|
void OnClear(wxCommandEvent &event);
|
|
u32 GenerateFnId(const std::string& func_name);
|
|
void UpdateInformation();
|
|
void PrintId();
|
|
}; |