Ricle 0 Newbie Poster

I want to map a message onto a handling function
code as following:

#define WM_USER_THREAD_FINISHED (WM_USER+1)
#define WM_USER_THREAD_UPDATE_PROGRESS (WM_USER+2)

afx_msg LRESULT OnThreadFinished(WPARAM wParam,LPARAM lParam);
afx_msg LRESULT OnThreadUpdateProgress(WPARAM wParam,LPARAM lParam);

ON_MESSAGE(WM_USER_THREAD_FINISHED, OnThreadFinished)
ON_MESSAGE(WM_USER_THREAD_UPDATE_PROGRESS, OnThreadUpdateProgress)

When I compile, errors always occur:
...\listener.cpp(484) : error C2447: missing function header (old-style formal list?)
...\listener.cpp(484) : error C2143: syntax error : missing ';' before ','
...\listener.cpp(485) : error C2143: syntax error : missing ';' before '{'
...\listener.cpp(485) : error C2447: missing function header (old-style formal list?)
...\listener.cpp(485) : error C2143: syntax error : missing ';' before ','
...\listener.cpp(498) : error C2143: syntax error : missing ';' before '{'
...\listener.cpp(498) : error C2447: missing function header (old-style formal list?)
Error executing cl.exe.


Anybody could tell me what is the problem??????Really confused...Thanks