2016-11-18 00:40:14 +00:00
|
|
|
/*
|
2018-03-10 22:02:39 +00:00
|
|
|
Copyright 2018 Peter Repukat - FlatspotSoftware
|
2016-11-18 00:40:14 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
2016-11-26 21:57:32 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2016-11-18 00:40:14 +00:00
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2016-11-18 00:22:07 +00:00
|
|
|
#include <QtCore/QCoreApplication>
|
2018-03-27 21:23:45 +00:00
|
|
|
#include <Windows.h>
|
2018-03-10 22:02:39 +00:00
|
|
|
#include "SteamTarget.h"
|
2016-11-16 13:31:35 +00:00
|
|
|
|
2018-03-27 21:23:45 +00:00
|
|
|
int CALLBACK WinMain(
|
|
|
|
_In_ HINSTANCE hInstance,
|
|
|
|
_In_ HINSTANCE hPrevInstance,
|
|
|
|
_In_ LPSTR lpCmdLine,
|
|
|
|
_In_ int nCmdShow
|
|
|
|
)
|
2016-11-16 13:31:35 +00:00
|
|
|
{
|
2018-03-27 21:23:45 +00:00
|
|
|
SteamTarget target(__argc, __argv);
|
2018-03-10 22:02:39 +00:00
|
|
|
target.init();
|
2018-03-11 02:38:36 +00:00
|
|
|
return SteamTarget::exec();
|
2016-11-16 13:31:35 +00:00
|
|
|
}
|
2016-11-18 00:22:07 +00:00
|
|
|
|