fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / config / gen / platform / win32 / misc.c
blob0509affdac34db5ffb442476ab7fce36d69097e7
1 /*
2 * $Id$
3 * Copyright (C) 2004-2006, Parrot Foundation.
4 */
6 /*
8 =head1 NAME
10 config\gen\platform\win32\misc.c
12 =head1 DESCRIPTION
14 Miscellaneous helper functions that are specific to Win32.
16 =head2 Functions
18 =over 4
20 =cut
26 =item C<void Parrot_platform_init_code(void)>
28 Initialize Parrot for the Win32 platform. Turns off ugly crash dialog
29 boxes on Win32.
31 =cut
35 void
36 Parrot_platform_init_code(void)
38 SetErrorMode(SEM_NOGPFAULTERRORBOX);
43 =back
45 =cut
50 * Local variables:
51 * c-file-style: "parrot"
52 * End:
53 * vim: expandtab shiftwidth=4: