55 lines
1.2 KiB
C
55 lines
1.2 KiB
C
/*
|
|
************************************************************************
|
|
**
|
|
** Copyright (c) 2010 by
|
|
** Core|Vision B.V.
|
|
** Cereslaan 10b
|
|
** 5384 VT Heesch
|
|
** The Netherlands
|
|
**
|
|
** All Rights Reserved
|
|
**
|
|
************************************************************************
|
|
*/
|
|
/*
|
|
************************************************************************
|
|
**
|
|
** Project name: Dual Inventive: Utility Library
|
|
** Filename: cp3000-i18n.h
|
|
** Author: Jack Weeland
|
|
** Date: March 5, 2010
|
|
** File version: 1.0 of March 5, 2010
|
|
**
|
|
************************************************************************
|
|
*/
|
|
/*
|
|
************************************************************************
|
|
**
|
|
** CP3000 - Internationalization
|
|
**
|
|
************************************************************************
|
|
*/
|
|
|
|
#ifndef __CP3000_I18N_H
|
|
#define __CP3000_I18N_H
|
|
|
|
/*
|
|
** Definitions
|
|
*/
|
|
|
|
typedef struct CP3000_I18N
|
|
{
|
|
char i18n[16];
|
|
char tz[64];
|
|
} cp3000_i18n_t;
|
|
|
|
/*
|
|
** Functions
|
|
*/
|
|
|
|
// Set internationalization and timezone; the old settings are saved
|
|
// in 'save', which may be NULL
|
|
int cp3000_set_locale(const cp3000_i18n_t *set, cp3000_i18n_t *save);
|
|
|
|
#endif /* __CP3000_I18N_H */
|