Start major refactoring.

This commit is contained in:
Markus F.X.J. Oberhumer
2006-06-19 19:20:50 +02:00
parent c42fb54bc6
commit bf5cbfffc2
53 changed files with 5150 additions and 1816 deletions
+6 -2
View File
@@ -135,7 +135,8 @@ int upx_ucl_compress ( const upx_bytep src, upx_uint src_len,
int upx_ucl_decompress ( const upx_bytep src, upx_uint src_len,
upx_bytep dst, upx_uintp dst_len,
int method )
int method,
const struct upx_compress_result_t *result )
{
int r = UPX_E_ERROR;
@@ -173,6 +174,7 @@ int upx_ucl_decompress ( const upx_bytep src, upx_uint src_len,
break;
}
UNUSED(result);
return r;
}
@@ -183,7 +185,8 @@ int upx_ucl_decompress ( const upx_bytep src, upx_uint src_len,
int upx_ucl_test_overlap ( const upx_bytep buf, upx_uint src_off,
upx_uint src_len, upx_uintp dst_len,
int method )
int method,
const struct upx_compress_result_t *result )
{
int r = UPX_E_ERROR;
@@ -221,6 +224,7 @@ int upx_ucl_test_overlap ( const upx_bytep buf, upx_uint src_off,
break;
}
UNUSED(result);
return r;
}