• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
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 
DllMain(HANDLE module,DWORD reason,LPVOID reserved)12 BOOL APIENTRY DllMain(HANDLE module, DWORD  reason, LPVOID reserved) {
13   return TRUE;
14 }
15 
16