0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

winAppDev > window message > WM_USER > (WM_USER + X)の形で定義する

0
Last updated at Posted at 2015-08-28

WM_USER メッセージコードは、アプリケーション定義のメッセージを定義するのに使用されます。通常、アプリケーション定義のメッセージを (WM_USER + X) の形で定義します。

動作確認
C++ Builder XE4
Unit1.h
public:
BEGIN_MESSAGE_MAP
	MESSAGE_HANDLER(WM_USER + 10, TMessage, ProcFunc)
END_MESSAGE_MAP(TForm)

上記のような使い方をするようだ。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?