00001 /* ***** BEGIN LICENSE BLOCK ***** 00002 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 00003 * 00004 * The contents of this file are subject to the Mozilla Public License Version 00005 * 1.1 (the "License"); you may not use this file except in compliance with 00006 * the License. You may obtain a copy of the License at 00007 * http://www.mozilla.org/MPL/ 00008 * 00009 * Software distributed under the License is distributed on an "AS IS" basis, 00010 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 00011 * for the specific language governing rights and limitations under the 00012 * License. 00013 * 00014 * The Original Code is OffscreenGecko code. 00015 * 00016 * The Initial Developer of the Original Code is 00017 * Frank Richter <frank.richter@gmail.com>. 00018 * Portions created by the Initial Developer are Copyright (C) 2007 00019 * the Initial Developer. All Rights Reserved. 00020 * 00021 * Contributor(s): 00022 * 00023 * Alternatively, the contents of this file may be used under the terms of 00024 * either the GNU General Public License Version 2 or later (the "GPL"), or 00025 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 00026 * in which case the provisions of the GPL or the LGPL are applicable instead 00027 * of those above. If you wish to allow use of your version of this file only 00028 * under the terms of either the GPL or the LGPL, and not to allow others to 00029 * use your version of this file under the terms of the MPL, indicate your 00030 * decision by deleting the provisions above and replace them with the notice 00031 * and other provisions required by the GPL or the LGPL. If you do not delete 00032 * the provisions above, a recipient may use your version of this file under 00033 * the terms of any one of the MPL, the GPL or the LGPL. 00034 * 00035 * ***** END LICENSE BLOCK ***** */ 00036 00037 #ifndef __OFFSCREENGECKO_DEFS_H__ 00038 #define __OFFSCREENGECKO_DEFS_H__ 00039 00044 #ifdef __cplusplus 00045 # define OSGK_EXTERN_C extern "C" 00046 # define OSGK_DEFAULT_ARG(X) = X 00047 # define OSGK_CLASSTYPE_DEF class 00048 # define OSGK_CLASSTYPE_REF 00049 #else 00050 # define OSGK_EXTERN_C extern 00051 # define OSGK_DEFAULT_ARG(X) 00052 # define OSGK_CLASSTYPE_DEF struct 00053 # define OSGK_CLASSTYPE_REF struct 00054 #endif 00055 00056 #ifdef WIN32 00057 # ifdef OSGK_BUILD 00058 # define OSGK_API _declspec(dllexport) 00059 # else 00060 # define OSGK_API _declspec(dllimport) 00061 # endif 00062 #else 00063 # ifdef __GNUC__ 00064 # define OSGK_API __attribute__((visibility("default"))) 00065 # else 00066 # define OSGK_API 00067 # endif 00068 #endif 00069 00070 #include <assert.h> 00071 #define OSGK_ASSERT(x) assert(x) 00072 00074 typedef unsigned int OSGK_GeckoResult; 00075 00076 #if defined(__cplusplus) || defined(__GNUC__) 00077 # define OSGK_INLINE inline 00078 #elif defined(_MSC_VER) 00079 # define OSGK_INLINE __inline 00080 #else 00081 # define OSGK_INLINE 00082 #endif 00083 00084 #endif // __OFFSCREENGECKO_DEFS_H__