mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
78 lines
2.2 KiB
C
78 lines
2.2 KiB
C
/*
|
|
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 expat.
|
|
|
|
The Initial Developer of the Original Code is James Clark.
|
|
Portions created by James Clark are Copyright (C) 1998, 1999
|
|
James Clark. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
|
|
Alternatively, the contents of this file may be used under the terms
|
|
of the GNU General Public License (the "GPL"), in which case the
|
|
provisions of the GPL are applicable instead of those above. If you
|
|
wish to allow use of your version of this file only under the terms of
|
|
the GPL and not to allow others to use your version of this file under
|
|
the MPL, indicate your decision by deleting the provisions above and
|
|
replace them with the notice and other provisions required by the
|
|
GPL. If you do not delete the provisions above, a recipient may use
|
|
your version of this file under either the MPL or the GPL.
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#ifdef XML_WINLIB
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define STRICT
|
|
#include <windows.h>
|
|
|
|
#define malloc(x) HeapAlloc(GetProcessHeap(), 0, (x))
|
|
#define calloc(x, y) HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (x)*(y))
|
|
#define free(x) HeapFree(GetProcessHeap(), 0, (x))
|
|
#define realloc(x, y) HeapReAlloc(GetProcessHeap(), 0, x, y)
|
|
#define abort() /* as nothing */
|
|
|
|
#else /* not XML_WINLIB */
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif /* not XML_WINLIB */
|
|
|
|
/* This file can be used for any definitions needed in
|
|
particular environments. */
|
|
|
|
/***
|
|
* Mozilla specific defines listed below
|
|
*/
|
|
#ifdef MOZILLA_CLIENT
|
|
|
|
#include "nspr.h"
|
|
#define malloc(x) PR_Malloc((size_t)(x))
|
|
#define realloc(x, y) PR_Realloc((x), (size_t)(y))
|
|
#define calloc(x, y) PR_Calloc((x),(y))
|
|
#define free(x) PR_Free(x)
|
|
|
|
#if PR_BYTES_PER_INT != 4
|
|
typedef PRInt32 int;
|
|
#endif
|
|
|
|
/* Enable Unicode string processing in expat */
|
|
#define XML_UNICODE
|
|
|
|
/* Enable external paramter entity parsing in expat */
|
|
#ifndef XML_DTD
|
|
#define XML_DTD 1
|
|
#endif
|
|
|
|
#endif
|