mirror of
https://github.com/electron/electron.git
synced 2026-01-28 16:58:21 -05:00
17 lines
486 B
C++
17 lines
486 B
C++
// 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 {
|
|
|
|
bool MessageHandlerDelegate::PreHandleMSG(UINT message,
|
|
WPARAM w_param,
|
|
LPARAM l_param,
|
|
LRESULT* result) {
|
|
return false;
|
|
}
|
|
|
|
} // namespace atom
|