|
From: Diogo T. <fo...@gm...> - 2007-09-12 23:34:12
|
Roger that.
I'm doing the locale functions at the moment. We might have to do
an OS dependent implementation. I can't find ANSI functions to retrieve
the language and country codes in the formats specified by the spec:
ISO 639-1 and ISO 3166-1 alpha-2 respectively. Any ideas?
We might have to provide initialization and finalization functions for the
subsystems. Since we have control over the main entry point, my
suggestion is the following:
int main(int argc, char* argv[])
{
init_events();
init_locale();
kdMain(argc, argv);
free_locale();
free_events();
}
On 9/12/07, Guilherme Santos <gui...@gm...> wrote:
>
> Today I have implemented the time basic wrappers to the ANSI C API.
> I have started to implement the timer functions, but they involve system
> events and perhaps some custom implementation.
> Therefore I will proceed to the abstraction of system events.
>
>
> PS: By the way, I added some tests for cppunit (in C code style) to the
> folder tests/cppunit
>
>
> Guilherme Santos
>
>
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2005.
> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
> _______________________________________________
> Freekode-public mailing list
> Fre...@li...
> https://lists.sourceforge.net/lists/listinfo/freekode-public
>
|