2015-08-06 10:15:27 +08:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "atom/browser/ui/win/message_handler_delegate.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2018-04-17 21:55:30 -04:00
|
|
|
bool MessageHandlerDelegate::PreHandleMSG(UINT message,
|
|
|
|
WPARAM w_param,
|
|
|
|
LPARAM l_param,
|
|
|
|
LRESULT* result) {
|
2015-08-06 10:15:27 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace atom
|