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

Annotation of /innwebd/App_common.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.17 - (hide 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 sysadm 1.1 /*******************************************************/
2     /* */
3 sysadm 1.3 /* LeafOK Innbbsd */
4 sysadm 1.1 /* */
5 sysadm 1.17 /* Copyright (C) LeafOK.com, 2003-2008 */
6 sysadm 1.1 /* */
7 sysadm 1.17 /* http://www.leafok.com */
8 sysadm 1.1 /* */
9     /*******************************************************/
10    
11     #include "StdAfx.h"
12     #include ".\App_common.h"
13    
14 sysadm 1.3 const char App_common::ProductName[100] = "LeafOK Innbbsd";
15     const char App_common::ServiceName[100] = "Innbbsd";
16 sysadm 1.17 const char App_common::Copyright[256] = "Copyright (C) LeafOK.com, 2003-2008";
17 sysadm 1.1 const int App_common::Ver_Major = 1;
18 sysadm 1.17 const int App_common::Ver_Minor = 6;
19     const int App_common::Ver_Inner = 0;
20 sysadm 1.1
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