| 1 |
/*******************************************************/
|
| 2 |
/* */
|
| 3 |
/* LeafOK Innbbsd */
|
| 4 |
/* Copyright (C) LeafOK.com, 2003-2004 */
|
| 5 |
/* */
|
| 6 |
/* Programmed by Leaf */
|
| 7 |
/* E-mail:leaflet@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 Innbbsd";
|
| 19 |
const char App_common::ServiceName[100] = "Innbbsd";
|
| 20 |
const char App_common::Copyright[256] = "Copyright (C) LeafOK.com, 2003-2004";
|
| 21 |
const int App_common::Ver_Major = 1;
|
| 22 |
const int App_common::Ver_Minor = 4;
|
| 23 |
const int App_common::Ver_Inner = 12;
|
| 24 |
|
| 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 |
}
|