Don't preload rarely seen large images
[chromium-blink-merge.git] / sandbox / win / sandbox_poc / pocdll / pocdll.cc
blobe058f58b821a7aed7c1f1d48f69690678bd161a8
1 // Copyright (c) 2006-2008 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.
6 #include "sandbox/win/sandbox_poc/pocdll/exports.h"
7 #include "sandbox/win/sandbox_poc/pocdll/utils.h"
9 BOOL APIENTRY DllMain(HMODULE module,
10 DWORD reason_for_call,
11 LPVOID reserved) {
12 UNREFERENCED_PARAMETER(module);
13 UNREFERENCED_PARAMETER(reason_for_call);
14 UNREFERENCED_PARAMETER(reserved);
15 return TRUE;
18 void POCDLL_API Run(HANDLE log) {
19 TestFileSystem(log);
20 TestRegistry(log);
21 TestNetworkListen(log);
22 TestSpyScreen(log);
23 TestSpyKeys(log);
24 TestThreads(log);
25 TestProcesses(log);
26 TestGetHandle(log);