Defines a new window message that is guaranteed to be unique throughout the system
#include <WinAPI.au3>
_WinAPI_RegisterWindowMessage ( $sMessage )
$sMessage | String that specifies the message to be registered |
Success: | A message identifier in the range 0xC000 through 0xFFFF |
Failure: | 0, call _WinAPI_GetLastError() to get extended error information |
The RegisterWindowMessage function is used to register messages for communicating between two cooperating
applications. If two different applications register the same message string, the applications return the same
message value. The message remains registered until the session ends.
Search RegisterWindowMessage in MSDN Library.