20 lines
614 B
C++
20 lines
614 B
C++
#ifndef __WAW_STRG_HPP
|
|
#define __WAW_STRG_HPP
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
const CString WAW_g_C_csModuleNameForError = "WAtch Window for editors";
|
|
const CString WAW_g_C_csModuleVersion = "1.0.0 [" + CString(__DATE__) + "]";
|
|
|
|
const CString WAW_g_C_csSectionGeneral = "WAW_Section_General";
|
|
const CString WAW_g_C_csSectionPosition = "WAW_Section_Position";
|
|
|
|
const CString WAW_g_C_csEntryX = "WAW_Entry_X";
|
|
const CString WAW_g_C_csEntryY = "WAW_Entry_Y";
|
|
const CString WAW_g_C_csEntryCx = "WAW_Entry_Cx";
|
|
const CString WAW_g_C_csEntryCy = "WAW_Entry_Cy";
|
|
|
|
|
|
#endif //__WAW_STRG_HPP
|