/* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is MOZCE Lib. * * The Initial Developer of the Original Code is Doug Turner . * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): * John Wolfe * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #ifndef MOZCE_SHUNT_H #define MOZCE_SHUNT_H #ifdef MOZCE_SHUNT_EXPORTS #define MOZCE_SHUNT_API __declspec(dllexport) #else #define MOZCE_SHUNT_API __declspec(dllimport) #endif #define strdup _strdup #define strcmpi _stricmp #define stricmp _stricmp #define wgetcwd _wgetcwd #ifdef __cplusplus extern "C" { #endif MOZCE_SHUNT_API void abort(void); /* Environment stuff */ MOZCE_SHUNT_API char* getenv(const char* inName); MOZCE_SHUNT_API int putenv(const char *a); MOZCE_SHUNT_API char SetEnvironmentVariableW(const unsigned short * name, const unsigned short * value ); MOZCE_SHUNT_API char GetEnvironmentVariableW(const unsigned short * lpName, unsigned short* lpBuffer, unsigned long nSize); /* File system stuff */ MOZCE_SHUNT_API unsigned short * _wgetcwd(unsigned short* dir, unsigned long size); MOZCE_SHUNT_API unsigned short *_wfullpath( unsigned short *absPath, const unsigned short *relPath, unsigned long maxLength ); MOZCE_SHUNT_API int _unlink(const char *filename ); /* The time stuff should be defined here, but it can't be because it is already defined in time.h. MOZCE_SHUNT_API size_t strftime(char *, size_t, const char *, const struct tm *) MOZCE_SHUNT_API struct tm* localtime(const time_t* inTimeT) MOZCE_SHUNT_API struct tm* mozce_gmtime_r(const time_t* inTimeT, struct tm* outRetval) MOZCE_SHUNT_API struct tm* gmtime(const time_t* inTimeT) MOZCE_SHUNT_API time_t mktime(struct tm* inTM) MOZCE_SHUNT_API time_t time(time_t *) MOZCE_SHUNT_API clock_t clock() */ /* Locale Stuff */ /* The locale stuff should be defined here, but it can't be because it is already defined in locale.h. MOZCE_SHUNT_API struct lconv * localeconv(void) */ #ifdef __cplusplus }; #endif #endif //MOZCE_SHUNT_H