mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 16:05:21 +01:00
21 lines
389 B
C++
21 lines
389 B
C++
#ifndef NAN_H
|
|
#define NAN_H
|
|
|
|
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
* Copyright (C) 2020 Raspberry Pi (Trading) Limited
|
|
*/
|
|
|
|
// Dummy Node.js macros for 3rd party dependencies
|
|
#define NAN_METHOD(x)
|
|
|
|
namespace v8 {
|
|
class Object;
|
|
template <class T> class Local;
|
|
}
|
|
|
|
// mountutils also expects some #include files to be there
|
|
#include <vector>
|
|
#include <string.h>
|
|
|
|
#endif // NAN_H
|