* 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
style : DWORD;
dwExtendedStyle : DWORD;
x : integer;
y : integer;
cx : integer;
cy : integer;
x : smallint;
y : smallint;
cx : smallint;
cy : smallint;
id : WORD;
end;
LPDLGITEMTEMPLATE = ^DLGITEMTEMPLATE;
@ -1908,10 +1908,10 @@
style : DWORD;
dwExtendedStyle : DWORD;
cdit : WORD;
x : integer;
y : integer;
cx : integer;
cy : integer;
x : smallint;
y : smallint;
cx : smallint;
cy : smallint;
end;
LPDLGTEMPLATE = ^DLGTEMPLATE;
LPCDLGTEMPLATE = ^DLGTEMPLATE;