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

Annotation of /innwebd/App_common.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.15 - (hide annotations)
Sat Feb 26 16:10:25 2005 UTC (21 years ago) by sysadm
Branch: MAIN
Changes since 1.14: +2 -2 lines
Content type: text/x-c++src
Copyright update

1 sysadm 1.1 /*******************************************************/
2     /* */
3 sysadm 1.3 /* LeafOK Innbbsd */
4 sysadm 1.15 /* Copyright (C) LeafOK.com, 2003-2005 */
5 sysadm 1.1 /* */
6     /* Programmed by Leaf */
7 sysadm 1.3 /* E-mail:leaflet@leafok.com QQ:6049044 */
8 sysadm 1.1 /* */
9     /* http://bbs.leafok.com */
10     /* http://bbs.leafok.net */
11     /* http://bbs.fenglin.info */
12     /* */
13     /*******************************************************/
14    
15     #include "StdAfx.h"
16     #include ".\App_common.h"
17    
18 sysadm 1.3 const char App_common::ProductName[100] = "LeafOK Innbbsd";
19     const char App_common::ServiceName[100] = "Innbbsd";
20 sysadm 1.15 const char App_common::Copyright[256] = "Copyright (C) LeafOK.com, 2003-2005";
21 sysadm 1.1 const int App_common::Ver_Major = 1;
22 sysadm 1.3 const int App_common::Ver_Minor = 4;
23 sysadm 1.14 const int App_common::Ver_Inner = 12;
24 sysadm 1.1
25     CString App_common::GetVersion(void)
26     {
27     CString ver;
28     ver.Format("%s %d.%d.%d",
29     App_common::ProductName,
30     App_common::Ver_Major,
31     App_common::Ver_Minor,
32     App_common::Ver_Inner
33     );
34     return ver;
35     }

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