| 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 |
}
|