Как програмным путем симулировать из индикатора или библиотеки нажатие клавиши Enter?

 
Как програмным путем симулировать из индикатора или библиотеки нажатие клавиши Enter?
 
Поиск рулит: - Interception
И ещё от меня - Нажатие кнопок из эксперта ;)
 
А есть ли какие-либо Виндовские функции, которые можно запускать из библиотеки для симуляции нажатия клавиши Enter, и не привязываться к работе терминала ( в часности, эксперту или индикатору)? 
 
SendMessage Function

The SendMessage function sends the specified message to a window or windows. It calls the window procedure for the specified window and does not return until the window procedure has processed the message.

To send a message and return immediately, use the SendMessageCallback or SendNotifyMessage function. To post a message to a thread's message queue and return immediately, use the PostMessage or PostThreadMessage function.

Syntax

LRESULT SendMessage(      

    HWND hWnd,     UINT Msg,     WPARAM wParam,     LPARAM lParam );

Parameters

hWnd [in] Handle to the window whose window procedure will receive the message. If this parameter is HWND_BROADCAST, the message is sent to all top-level windows in the system, including disabled or invisible unowned windows, overlapped windows, and pop-up windows; but the message is not sent to child windows. Msg [in] Specifies the message to be sent. wParam [in] Specifies additional message-specific information. lParam [in] Specifies additional message-specific information.

Return Value

The return value specifies the result of the message processing; it depends on the message sent.

См. событие WM_KEYDOWN

Причина обращения: