/[LeafOK_CVS]/innwebd/App_common.cpp
ViewVC logotype

Contents of /innwebd/App_common.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.17 - (show annotations)
Fri Apr 11 17:14:49 2008 UTC (17 years, 11 months ago) by sysadm
Branch: MAIN
CVS Tags: HEAD
Changes since 1.16: +5 -9 lines
Content type: text/x-c++src
Update copyright
Add extra log for exception

1 /*******************************************************/
2 /* */
3 /* LeafOK Innbbsd */
4 /* */
5 /* Copyright (C) LeafOK.com, 2003-2008 */
6 /* */
7 /* http://www.leafok.com */
8 /* */
9 /*******************************************************/
10
11 #include "StdAfx.h"
12 #include ".\App_common.h"
13
14 const char App_common::ProductName[100] = "LeafOK Innbbsd";
15 const char App_common::ServiceName[100] = "Innbbsd";
16 const char App_common::Copyright[256] = "Copyright (C) LeafOK.com, 2003-2008";
17 const int App_common::Ver_Major = 1;
18 const int App_common::Ver_Minor = 6;
19 const int App_common::Ver_Inner = 0;
20
21 CString App_common::GetVersion(void)
22 {
23 CString ver;
24 ver.Format("%s %d.%d.%d",
25 App_common::ProductName,
26 App_common::Ver_Major,
27 App_common::Ver_Minor,
28 App_common::Ver_Inner
29 );
30 return ver;
31 }

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1