Pascal and C++ |
Back to index |
All code samples in this document are in ObjectPascal (for Delphi). This article provides C++ analogs of some Pascal terms used in FDK docs (send me corrections and additions). |
ObjectPascal | C++ | ||
integer | int | ||
PChar | pchar | ||
var tmp: PChar | pchar *tmp | ||
stdcall; | // ignore it | ||
function name(args):result; stdcall; | result name(args); | ||
THandle | HWND | ||
hBitmap | HBITMAP |
© 1999-2001 Alexander S. Tereschenko |