799fc835f8
BUG=none R=jkummerow@chromium.org LOG=n Review URL: https://codereview.chromium.org/316133002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21693 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
22 lines
537 B
C++
22 lines
537 B
C++
// Copyright 2011 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// The GYP based build ends up defining USING_V8_SHARED when compiling this
|
|
// file.
|
|
#undef USING_V8_SHARED
|
|
#include "include/v8.h"
|
|
|
|
#if V8_OS_WIN
|
|
#include "src/base/win32-headers.h"
|
|
|
|
extern "C" {
|
|
BOOL WINAPI DllMain(HANDLE hinstDLL,
|
|
DWORD dwReason,
|
|
LPVOID lpvReserved) {
|
|
// Do nothing.
|
|
return TRUE;
|
|
}
|
|
}
|
|
#endif // V8_OS_WIN
|