* fixed dlgtemplate and dlgitemtemplate structs (Martin Schreiber)

git-svn-id: trunk@2198 -
This commit is contained in:
Jonas Maebe 2006-01-06 22:34:47 +00:00
parent 5692b93a52
commit b334da9a54

View File

@ -1894,10 +1894,10 @@
DLGITEMTEMPLATE = packed record DLGITEMTEMPLATE = packed record
style : DWORD; style : DWORD;
dwExtendedStyle : DWORD; dwExtendedStyle : DWORD;
x : integer; x : smallint;
y : integer; y : smallint;
cx : integer; cx : smallint;
cy : integer; cy : smallint;
id : WORD; id : WORD;
end; end;
LPDLGITEMTEMPLATE = ^DLGITEMTEMPLATE; LPDLGITEMTEMPLATE = ^DLGITEMTEMPLATE;
@ -1908,10 +1908,10 @@
style : DWORD; style : DWORD;
dwExtendedStyle : DWORD; dwExtendedStyle : DWORD;
cdit : WORD; cdit : WORD;
x : integer; x : smallint;
y : integer; y : smallint;
cx : integer; cx : smallint;
cy : integer; cy : smallint;
end; end;
LPDLGTEMPLATE = ^DLGTEMPLATE; LPDLGTEMPLATE = ^DLGTEMPLATE;
LPCDLGTEMPLATE = ^DLGTEMPLATE; LPCDLGTEMPLATE = ^DLGTEMPLATE;