2011-05-02 15:12:50 +00:00
|
|
|
// Copyright 2011 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2010-07-02 07:39:42 +00:00
|
|
|
|
2011-05-04 11:10:49 +00:00
|
|
|
// The GYP based build ends up defining USING_V8_SHARED when compiling this
|
|
|
|
// file.
|
|
|
|
#undef USING_V8_SHARED
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "include/v8.h"
|
2010-07-02 07:39:42 +00:00
|
|
|
|
2013-08-28 08:35:04 +00:00
|
|
|
#if V8_OS_WIN
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/win32-headers.h"
|
2011-05-02 15:06:49 +00:00
|
|
|
|
2010-07-02 07:39:42 +00:00
|
|
|
extern "C" {
|
|
|
|
BOOL WINAPI DllMain(HANDLE hinstDLL,
|
|
|
|
DWORD dwReason,
|
|
|
|
LPVOID lpvReserved) {
|
|
|
|
// Do nothing.
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
2013-08-28 08:35:04 +00:00
|
|
|
#endif // V8_OS_WIN
|