mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-24 06:19:11 +02:00
* fixed dlgtemplate and dlgitemtemplate structs (Martin Schreiber)
git-svn-id: trunk@2198 -
This commit is contained in:
parent
5692b93a52
commit
b334da9a54
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user