//Sample code file: var/ndk/webBuildengine/tmp/viewable_samples/bae5da4a-b842-4667-9fdf-ef3d868564d0/intl/esinit/esinit.c

//Warning: This code has been marked up for HTML

/*************************************************************************

  Copyright (c) 1997 Novell, Inc.  All Rights Reserved.

  With respect to this file, Novell hereby grants to Developer a 
  royalty-free, non-exclusive license to include this sample code 
  and derivative binaries in its product. Novell grants to Developer 
  worldwide distribution rights to market, distribute or sell this 
  sample code file and derivative binaries as a component of 
  Developer's product(s).  Novell shall have no obligations to 
  Developer or Developer's customers with respect to this code.
  
  DISCLAIMER:
  
  Novell disclaims and excludes any and all express, implied, and 
  statutory warranties, including, without limitation, warranties 
  of good title, warranties against infringement, and the implied 
  warranties of merchantibility and fitness for a particular purpose.  
  Novell does not warrant that the software will satisfy customer's 
  requirements or that the licensed works are without defect or error 
  or that the operation of the software will be uninterrupted.  
  Novell makes no warranties respecting any technical services or 
  support tools provided under the agreement, and disclaims all other 
  warranties, including the implied warranties of merchantability and 
  fitness for a particular purpose. */

/**************************************************************************
  ESINIT1.C
***************************************************************************

  Example of standard converter initialization.  If unable to initialize, 
  this example displays the code page and country code of the converter 
  we attempted to load.

**************************************************************************/

#include <nunicode.h>
#include <stdio.h>
#include <stdlib.h>

void main(void)
{
   nint  icode;
   nuint codePage, countryCode;

   /* Initialize the standard converter */
   icode = NWUSStandardUnicodeInit();

   if (icode)
   {
      NWUSGetCodePage(&codePage, &countryCode);
      printf("Unable to load standard converter for code page %d,"
             " country code %d.\n", codePage, countryCode);
      printf("Error code %04X\n",icode);

      exit(icode);
   }

   /*   Do something here.  */

   /* Release the standard converter */
   NWUSStandardUnicodeRelease();
}