09813cbf3d
X-SVN-Rev: 25002
28 lines
965 B
C
28 lines
965 B
C
/******************************************************************************
|
|
* Copyright (C) 2008, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
*******************************************************************************
|
|
*/
|
|
|
|
#ifndef __PKG_GENC_H__
|
|
#define __PKG_GENC_H__
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
U_CAPI void U_EXPORT2
|
|
printAssemblyHeadersToStdErr();
|
|
|
|
U_CAPI UBool U_EXPORT2
|
|
checkAssemblyHeaderName(const char* optAssembly);
|
|
|
|
U_CAPI void U_EXPORT2
|
|
writeCCode(const char *filename, const char *destdir, const char *optName, const char *optFilename, char *outFilePath);
|
|
|
|
U_CAPI void U_EXPORT2
|
|
writeAssemblyCode(const char *filename, const char *destdir, const char *optEntryPoint, const char *optFilename, char *outFilePath);
|
|
|
|
U_CAPI void U_EXPORT2
|
|
writeObjectCode(const char *filename, const char *destdir, const char *optEntryPoint, const char *optMatchArch, const char *optFilename, char *outFilePath);
|
|
|
|
#endif
|