I just want to rrwrite and change the code to asm format:
VOID CHANGE( PTCHAR FistName, PTCHAR SendName )
{
TCHAR new[MAX_PATH];
PTCHAR tmp;
DWORD result;
_tcscpy( SendName, FistName );
tmp = _tcsrchr( SendName, _T('\\'));
result = (lastSlash - SendName)/sizeof(TCHAR);
.
.
.
}
actually each C/C++ compiler, i can say for MS and Borland/Inprise, can produce .asm files from .c/.cpp files if you specify the appropriate compiler option. use /? to find out the option specification and then analyze the .asm... Best regards,
Igor