mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-04 18:18:32 +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
|
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;
|
||||||
|
Loading…
Reference in New Issue
Block a user