blob: f65d7aa1331a43640263b1834c2e8a7617e6084a [file]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/elevation_service/elevation_service_delegate.h"
#include "chrome/windows_services/service_program/service_program_main.h"
extern "C" int WINAPI wWinMain(HINSTANCE /*instance*/,
HINSTANCE /*prev_instance*/,
wchar_t* /*command_line*/,
int /*show_command*/) {
elevation_service::Delegate delegate;
return ServiceProgramMain(delegate);
}