blob: a230e51c6d3a1b7ee877408c8727368ef418a0ce [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <atlbase.h>
#include <atlcom.h>
#include <atlctl.h>
#include "remoting/host/win/elevated_controller.h"
namespace remoting {
class ElevatedControllerModule
: public ATL::CAtlExeModuleT<ElevatedControllerModule> {
public:
DECLARE_LIBID(LIBID_ChromotingElevatedControllerLib)
};
int ElevatedControllerMain() {
ElevatedControllerModule module;
return module.WinMain(SW_HIDE);
}
} // namespace remoting