Changed the handler functions array to be const, as that's the intent.

This commit is contained in:
Pietro Gagliardi 2014-12-01 15:18:12 -05:00
parent 84d66b6b50
commit 16a88c548b
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ struct table {
typedef BOOL (*handlerfunc)(struct table *, UINT, WPARAM, LPARAM, LRESULT *);
handlerfunc handlerfuncs[] = {
const handlerfunc handlerfuncs[] = {
APIHandler,
NULL,
};