Subversion Repositories Tewi

Rev

Rev 244 | Rev 250 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 244 Rev 249
Line 2... Line 2...
2
 
2
 
3
#include <windows.h>
3
#include <windows.h>
4
#include "gui.h"
4
#include "gui.h"
5
#include "tw_version.h"
5
#include "tw_version.h"
6
 
6
 
7
PBTEWI BITMAP "../Binary/pbtewi.bmp"
7
PBTEWI BITMAP "..\\Binary\\pbtewi.bmp"
8
TEWILOGO BITMAP "../Binary/tewi.bmp"
8
TEWILOGO BITMAP "../Binary/tewi.bmp"
9
 
9
 
10
VERSIONDLG DIALOG 0, 0, 200, 50
10
VERSIONDLG DIALOG 0, 0, 200, 50
11
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
11
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
12
CAPTION "Version Information"
12
CAPTION "Version Information"
13
{
13
{
14
	LTEXT "Tewi HTTPd version " TW_VERSION, GUI_TEWI_NAME, 42, 5, 192, 50
14
	LTEXT TW_VERSION_TEXT, GUI_TEWI_NAME, 42, 5, 192, 50
15
	LTEXT "Original by Nishi <nishi@nishi.boats>", GUI_TEWI_ORIGINAL, 42, 5 + 8, 192, 50
15
	LTEXT "Original by Nishi <nishi@nishi.boats>", GUI_TEWI_ORIGINAL, 42, 5 + 8, 192, 50
16
	LTEXT "Compilation date: " __DATE__ " " __TIME__, GUI_TEWI_DATE, 42, 5 + 8 + 8, 192, 50
-
 
17
	DEFPUSHBUTTON "&OK", IDOK, 75, 35, 50, 10
16
	DEFPUSHBUTTON "&OK", IDOK, 75, 35, 50, 10
18
}
17
}