2011-09-16 21:34:31 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-09-16 21:34:31 +00:00
|
|
|
|
2012-02-01 04:38:35 +00:00
|
|
|
#include <stdlib.h>
|
2012-01-31 14:40:58 +00:00
|
|
|
#include "android_npapi.h"
|
2011-09-16 21:34:31 +00:00
|
|
|
#include "nsAutoPtr.h"
|
2011-09-26 20:10:47 +00:00
|
|
|
#include "nsISupportsImpl.h"
|
2011-09-16 21:34:31 +00:00
|
|
|
|
|
|
|
#define NOT_IMPLEMENTED_FATAL() do { \
|
|
|
|
__android_log_print(ANDROID_LOG_ERROR, "GeckoPlugins", \
|
|
|
|
"%s not implemented %s, %d", \
|
|
|
|
__PRETTY_FUNCTION__, __FILE__, __LINE__); \
|
|
|
|
abort(); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define NOT_IMPLEMENTED() \
|
|
|
|
__android_log_print(ANDROID_LOG_ERROR, "GeckoPlugins", \
|
|
|
|
"!!!!!!!!!!!!!! %s not implemented %s, %d", \
|
|
|
|
__PRETTY_FUNCTION__, __FILE__, __LINE__); \
|
|
|
|
|
2012-01-31 14:40:58 +00:00
|
|
|
void InitAudioTrackInterfaceV0(ANPAudioTrackInterfaceV0 *i);
|
|
|
|
void InitAudioTrackInterfaceV1(ANPAudioTrackInterfaceV1* i);
|
2011-09-16 21:34:31 +00:00
|
|
|
void InitBitmapInterface(ANPBitmapInterfaceV0 *i);
|
|
|
|
void InitCanvasInterface(ANPCanvasInterfaceV0 *i);
|
|
|
|
void InitEventInterface(ANPEventInterfaceV0 *i);
|
|
|
|
void InitLogInterface(ANPLogInterfaceV0 *i);
|
|
|
|
void InitMatrixInterface(ANPMatrixInterfaceV0 *i);
|
|
|
|
void InitPaintInterface(ANPPaintInterfaceV0 *i);
|
|
|
|
void InitPathInterface(ANPPathInterfaceV0 *i);
|
|
|
|
void InitSurfaceInterface(ANPSurfaceInterfaceV0 *i);
|
|
|
|
void InitSystemInterface(ANPSystemInterfaceV0 *i);
|
2012-01-31 14:40:58 +00:00
|
|
|
void InitSystemInterfaceV1(ANPSystemInterfaceV1 *i);
|
|
|
|
void InitSystemInterfaceV2(ANPSystemInterfaceV2 *i);
|
2011-09-16 21:34:31 +00:00
|
|
|
void InitTypeFaceInterface(ANPTypefaceInterfaceV0 *i);
|
|
|
|
void InitWindowInterface(ANPWindowInterfaceV0 *i);
|
2012-01-31 14:40:58 +00:00
|
|
|
void InitWindowInterfaceV1(ANPWindowInterfaceV1 *i);
|
|
|
|
void InitWindowInterfaceV2(ANPWindowInterfaceV2 *i);
|
|
|
|
void InitVideoInterfaceV0(ANPVideoInterfaceV0 *i);
|
|
|
|
void InitVideoInterfaceV1(ANPVideoInterfaceV1 *i);
|
|
|
|
void InitOpenGLInterface(ANPOpenGLInterfaceV0 *i);
|
|
|
|
void InitNativeWindowInterface(ANPNativeWindowInterfaceV0 *i);
|