From 6fca0cd260bfeefac41462dfc9055cd905559a67 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 16 Sep 1996 16:40:13 +0000 Subject: [PATCH] make EPICS version be the console title --- src/ca/windows_depen.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/ca/windows_depen.c b/src/ca/windows_depen.c index a1b148ac3..a2bc04e81 100644 --- a/src/ca/windows_depen.c +++ b/src/ca/windows_depen.c @@ -32,11 +32,17 @@ * Modification Log: * ----------------- * $Log$ + * Revision 1.21 1996/08/05 19:20:29 jhill + * removed incorrect ver number + * * Revision 1.20 1995/12/19 19:36:20 jhill * function prototype changes * * Revision 1.19 1995/11/29 19:15:42 jhill * added $Log$ + * added Revision 1.21 1996/08/05 19:20:29 jhill + * added removed incorrect ver number + * added * Revision 1.20 1995/12/19 19:36:20 jhill * function prototype changes * to the header @@ -49,6 +55,7 @@ #include #include #include +#include #include "iocinf.h" @@ -469,7 +476,7 @@ BOOL epicsShareAPI DllMain(HANDLE hModule, DWORD dwReason, LPVOID lpReserved) #if _DEBUG /* for gui applications, setup console for error messages */ if (AllocConsole()) { - SetConsoleTitle("Channel Access Status"); + SetConsoleTitle(EPICS_VERSION_STRING); freopen( "CONOUT$", "a", stderr ); } fprintf(stderr, "Process attached to ca.dll\n");