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

Annotation of /innwebd/App_common.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations)
Wed Jun 30 12:54:15 2004 UTC (21 years, 8 months ago) by sysadm
Branch: MAIN
Content type: text/x-c++src
Add common information
Set nlog as global variable

1 sysadm 1.1 /*******************************************************/
2     /* */
3     /* LeafOK Innd */
4     /* Copyright (C) LeafOK.com, 2003-2004 */
5     /* */
6     /* Programmed by Leaf */
7     /* E-mail:leaf@leafok.com QQ:6049044 */
8     /* */
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     const char App_common::ProductName[100] = "LeafOK Innd";
19     const int App_common::Ver_Major = 1;
20     const int App_common::Ver_Minor = 3;
21     const int App_common::Ver_Inner = 1;
22    
23     CString App_common::GetVersion(void)
24     {
25     CString ver;
26     ver.Format("%s %d.%d.%d",
27     App_common::ProductName,
28     App_common::Ver_Major,
29     App_common::Ver_Minor,
30     App_common::Ver_Inner
31     );
32     return ver;
33     }
34    
35     nntp_log nlog;

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