mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 18:09:27 +02:00
* remove some redundant pbyte definitions.
git-svn-id: trunk@10097 -
This commit is contained in:
parent
66676be8e5
commit
d7c9bb88d2
@ -23,7 +23,6 @@
|
||||
{ PChar functions }
|
||||
|
||||
type
|
||||
pbyte = ^byte;
|
||||
CharArray = array[0..0] of char;
|
||||
|
||||
{ Processor dependent part, shared withs strings unit }
|
||||
|
@ -141,7 +141,7 @@
|
||||
|
||||
LP = ^word;
|
||||
LPBOOL = ^WINBOOL;
|
||||
LPBYTE = ^BYTE;
|
||||
LPBYTE = pbyte;
|
||||
LPCCH = PCHAR;
|
||||
LPCH = PCHAR;
|
||||
|
||||
@ -190,7 +190,7 @@
|
||||
PWINBOOL = ^WINBOOL;
|
||||
PBOOLEAN = ^BYTE;
|
||||
|
||||
PBYTE = ^BYTE;
|
||||
PBYTE = System.PByte;
|
||||
|
||||
PCCH = PCHAR;
|
||||
PCH = PCHAR;
|
||||
@ -200,7 +200,7 @@
|
||||
PCWCH = Pwidechar;
|
||||
PCWSTR = Pwidechar;
|
||||
|
||||
PDWORD = ^DWORD;
|
||||
PDWORD = System.PDWORD;
|
||||
|
||||
PHANDLE = ^HANDLE;
|
||||
PHKEY = ^HKEY;
|
||||
@ -228,7 +228,7 @@
|
||||
PWCH = Pwidechar;
|
||||
PWCHAR = Pwidechar;
|
||||
|
||||
PWORD = ^word;
|
||||
PWORD = System.PWord;
|
||||
PUINT = ^cardinal;
|
||||
PULONG = ^cardinal;
|
||||
PUSHORT = ^word;
|
||||
|
Loading…
Reference in New Issue
Block a user