Hi,
i have read a file into a buffer
CFile tst;
tst.open(.........);
DWORD len = tst.getlenght();
BYTE *buf = new BYTE[len];
tst.read(buf, len);
now i want find a string in the buf and change it
is there a function to find and change a string in Buffer?
Thanks in advance
i have read a file into a buffer
CFile tst;
tst.open(.........);
DWORD len = tst.getlenght();
BYTE *buf = new BYTE[len];
tst.read(buf, len);
now i want find a string in the buf and change it
is there a function to find and change a string in Buffer?
Thanks in advance