Commit 92fa4733 by Laurent Guerby Committed by Laurent Guerby

sysdep.c (rts_get_*): Fix style.

2001-11-25  Laurent Guerby  <guerby@acm.org>

	* sysdep.c (rts_get_*): Fix style.

From-SVN: r47315
parent d133777f
2001-11-25 Laurent Guerby <guerby@acm.org>
* sysdep.c (rts_get_*): Fix style.
2001-11-19 Laurent Guerby <guerby@acm.org>
* Makefile.in (INCLUDES_FOR_SUBDIR): Remove redundant system include
......
......@@ -6,7 +6,7 @@
* *
* C Implementation File *
* *
* $Revision: 1.3 $
* $Revision: 1.4 $
* *
* Copyright (C) 1992-2001 Free Software Foundation, Inc. *
* *
......@@ -526,10 +526,29 @@ char *rts_get_hPrevInstance PARAMS ((void));
char *rts_get_lpCommandLine PARAMS ((void));
int rts_get_nShowCmd PARAMS ((void));
char *rts_get_hInstance () { return (GetModuleHandleA (0)); }
char *rts_get_hPrevInstance () { return (0); }
char *rts_get_lpCommandLine () { return (GetCommandLineA ()); }
int rts_get_nShowCmd () { return (1); }
char *
rts_get_hInstance ()
{
return GetModuleHandleA (0);
}
char *
rts_get_hPrevInstance ()
{
return 0;
}
char *
rts_get_lpCommandLine ()
{
return GetCommandLineA ();
}
int
rts_get_nShowCmd ()
{
return 1;
}
#endif /* WINNT */
#ifdef VMS
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment