Click here to Skip to main content
15,900,258 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
What kind of messages are sent to the window procedure 0xc0...(0xc04f, 0xc061, 0xc0BA, 0xc0b4...)

LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam){
switch(iMsg){
case 0xc0...: whats it?
Posted
Updated 2-Jun-11 8:48am
v4
Comments
Abhinav S 2-Jun-11 14:36pm    
If you post in English, there are more chances of you getting an answer.
Sergey Alexandrovich Kryukov 2-Jun-11 15:43pm    
Вот это залудил!
--SA

P.S. Don't try to translate in English. This is lexically and syntactically perfect sentence, some jargon usage without any jargon words, but computer translators cannot copy such simple situations, not even close. (This is not offensive.)

Попробуйте еще раз на английском языке, если вы действительно ожидать некоторую помощь!
/
Try again in English if you really expect some help!

[COMMENTS from SA:]

Попробуйте еще раз на английском языке, если вы действительно ожидать некоторую помощь

[Попробуйте еще раз, но на английском языке, если вы действительно рассчитиваете получить какую-либо помощь — SA]

[Computer translators these are completely unable to work with Russian; generation of stylistically and even syntactically correct clauses is completely beyond their capabilities even is such a simple case. — SA]
 
Share this answer
 
v3
Comments
Sergey Alexandrovich Kryukov 2-Jun-11 16:01pm    
I fixed Russian sentence and added my comment to your solution.
Hope you don't mind.
Thank you.
--SA
Everything in Windows is communicating through these messages.

See http://msdn.microsoft.com/en-us/library/ms644950(v=vs.85).aspx[^], http://msdn.microsoft.com/en-us/library/ms644944(v=vs.85).aspx[^].

You won't be able to work with them without understanding of basic Windows architecture. Find any book on raw Windows programming.
For a basic idea of messages, see:
http://msdn.microsoft.com/en-us/library/ms632590(v=vs.85).aspx[^],
http://msdn.microsoft.com/en-us/library/ms644927(v=vs.85).aspx[^].

You will be able to find the list of messages in the source code of Windows API in any language.
You can also find it here:
http://www.autohotkey.com/docs/misc/SendMessageList.htm[^].

When you know a named for a message (this is a second parameter in SendMessage or PostMessage), you can get help on every particular message ID which will show you the meaning and set of other parameters of the message.

—SA
 
Share this answer
 
Comments
Albert Holguin 2-Jun-11 20:19pm    
5!
Sergey Alexandrovich Kryukov 2-Jun-11 22:14pm    
Thank you, Albert.
--SA
Abhinav S 3-Jun-11 2:31am    
Good links. My 5.
Sergey Alexandrovich Kryukov 4-Jun-11 0:39am    
Thank you, Abhinav.
--SA
You might like to take help from someone who knows some English.
Even after translation, it is not making much sense.

Try reposting with guidance and I'm sure someone will help you out here.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 2-Jun-11 16:00pm    
You don't need to know Russian to answer the question (but OP is apparently far, far away from the ability to use message in practice, needs fundamental learning).

Anyway, please see my solution and comments to other solutions (pretty interesting).
--SA
Abhinav S 3-Jun-11 2:31am    
Will take a look.
Меня тоже заинтересовало оконное сообщение 0xc0b4, впервые увидел его под семеркой.
Вот это "0xc0b4, L"Registred:TaskBarButtonCreated"" - я выдрал с помощью Spy++.

Я думаю, тобой обозначено семейство регистрируемых сообщений. То, что 0xc0b4 регистрируется (RegisterWindowMessage) самой системой - у меня не вызывает сомнений, кому принадлежат остальные - не смотрел. Удачи, земляк =)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900