我創建了一個函數,允許我用當前打開的進程從內存中的指針返回一個泛型類型。 public static T ReadValue<T>(this IntPtr ptr, int length = 0)
{
Type valT = typeof(T);
byte[] buffer = length > 0 ? new byte[length] : new byte[Ma
所以,我有一個類使用WM_COPYDATA來允許應用程序進行通信。 type
TMyRec = record
Name: string[255];
Age: integer;
Birthday: TDateTime;
end;
function TAppCommunication.SendRecord(const ARecordToSend: