Reactos
1//
2// wmainCRTStartup.c
3//
4// Copyright (c) 2024 Timo Kreuzer
5//
6// Implementation of unicode executable entry point.
7//
8// SPDX-License-Identifier: MIT
9//
10
11#include "commonCRTStartup.hpp"
12
13extern "C" unsigned long wmainCRTStartup(void*)
14{
15 __security_init_cookie();
16
17 return __commonCRTStartup<decltype(wmain)>();
18}