| PByte | Top Previous Next | 
| What is translated > Types > API Integration > PByte PByte is an example for the API integration. PByte is defined in Winapi,Windows.pas as: 
 PByte = System.Types.PByte; 
 
 and in System.Types.pas it is defined as: 
 PByte = System.PByte; {$EXTERNALSYM PByte} 
 In System.pas it is defined as: 
 PByte = ^Byte; {NODEFINE PByte} { defined in sysmac.h } 
 
 Here the NODEFINE directive applies. For C++Builder PByte is defined in symac.h as 
 typedef Byte* PByte; 
 | 
| This page belongs to the Delphi2C# Documentation | Delphi2C# home Content |