Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > 6ce6329cd6ad3b36930de46f3738a9e1 > files > 1349

fpc-2.2.0-1mdv2008.1.x86_64.rpm

program testlibuid;

uses sysutils,libuuid;

Var
  T : TGUID;
  P : PByte;
  I : Integer;

begin
//  GetURandomBytes(T,SizeOf(T));
  CreateGUID(T);
  Writeln(GUIDToString(T));
end.