Changed the handler functions array to be const, as that's the intent.
This commit is contained in:
parent
84d66b6b50
commit
16a88c548b
|
@ -103,7 +103,7 @@ struct table {
|
||||||
|
|
||||||
typedef BOOL (*handlerfunc)(struct table *, UINT, WPARAM, LPARAM, LRESULT *);
|
typedef BOOL (*handlerfunc)(struct table *, UINT, WPARAM, LPARAM, LRESULT *);
|
||||||
|
|
||||||
handlerfunc handlerfuncs[] = {
|
const handlerfunc handlerfuncs[] = {
|
||||||
APIHandler,
|
APIHandler,
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue