📄 compbin.cpp
字号:
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the license visit http://go.microsoft.com/fwlink/?LinkId=3223.
//
#include "compcat.h"
int main(int argc, char *argv[]){
DWORD length = 0;
bool split = false;
int i;
if(argc < 2 || strcmp(argv[1], "-?") == 0 || strcmp(argv[1], "/?") == 0){
goto USAGE;
}
for(i = 1; i < argc - 1; i++){
if(_stricmp(argv[i], "-s") == 0){
split = true;
}
else if(_stricmp(argv[i], "-l") == 0){
i++;
length = strtoul(argv[i], NULL, 16);
if(!length){
fprintf(stderr, "Error: Invalid length specified\n");
goto USAGE;
}
}
else
goto USAGE;
}
if(split && !length){
fprintf(stderr, "Error: Length must be specified if split option is desired\n");
exit(1);
}
if(split || length){
// use command line parameters
if(compact_bin(argv[argc - 1], length, split)) // && compress_bin(argv[1]))
printf("Done\n");
}
else{
// use defaults
if(compact_bin(argv[argc - 1])) // && compress_bin(argv[1]))
printf("Done\n");
}
return 0;
USAGE:
fprintf(stderr, "\nUsage: %s [ options ] filename\n\n", argv[0]);
fprintf(stderr, "Options:\n"
" -l length Max length of record in hex\n"
" -s Allow splitting of records to adhere to max length\n"
" (WARNING: this may split a large compressed file across\n"
" multiple records and break UpdateXIP/Diffbin)"
);
exit(1);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -