Home | History | Annotate | Download | only in toolutil
      1 /******************************************************************************
      2  *   Copyright (C) 2008-2009, International Business Machines
      3  *   Corporation and others.  All Rights Reserved.
      4  *******************************************************************************
      5  */
      6 
      7 #ifndef __PKG_GENC_H__
      8 #define __PKG_GENC_H__
      9 
     10 #include "unicode/utypes.h"
     11 
     12 U_INTERNAL void U_EXPORT2
     13 printAssemblyHeadersToStdErr(void);
     14 
     15 U_INTERNAL UBool U_EXPORT2
     16 checkAssemblyHeaderName(const char* optAssembly);
     17 
     18 U_INTERNAL void U_EXPORT2
     19 writeCCode(const char *filename, const char *destdir, const char *optName, const char *optFilename, char *outFilePath);
     20 
     21 U_INTERNAL void U_EXPORT2
     22 writeAssemblyCode(const char *filename, const char *destdir, const char *optEntryPoint, const char *optFilename, char *outFilePath);
     23 
     24 U_INTERNAL void U_EXPORT2
     25 writeObjectCode(const char *filename, const char *destdir, const char *optEntryPoint, const char *optMatchArch, const char *optFilename, char *outFilePath);
     26 
     27 #endif
     28