Skip to content

Commit

Permalink
Common/MsgHandler: Convert type aliases over to using
Browse files Browse the repository at this point in the history
Same thing, nicer to read.
  • Loading branch information
lioncash committed Jun 17, 2019
1 parent 027c175 commit d1475f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Common/MsgHandler.h
Expand Up @@ -15,8 +15,8 @@ enum class MsgType
Critical
};

typedef bool (*MsgAlertHandler)(const char* caption, const char* text, bool yes_no, MsgType style);
typedef std::string (*StringTranslator)(const char* text);
using MsgAlertHandler = bool (*)(const char* caption, const char* text, bool yes_no, MsgType style);
using StringTranslator = std::string (*)(const char* text);

void RegisterMsgAlertHandler(MsgAlertHandler handler);
void RegisterStringTranslator(StringTranslator translator);
Expand Down

0 comments on commit d1475f6

Please sign in to comment.