Upload upstream chromium 108.0.5359.1
[platform/framework/web/chromium-efl.git] / rlz / win / dll / dll_main.cc
1 // Copyright 2012 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // Main function for the RLZ DLL.
6
7 #ifndef _WIN32_WINNT
8 #define _WIN32_WINNT 0x0501
9 #endif
10 #include <windows.h>
11
12 BOOL APIENTRY DllMain(HANDLE module, DWORD  reason, LPVOID reserved) {
13   return TRUE;
14 }
15