├── logo.h ├── delogo.rc ├── editdlg.c ├── editdlg.h ├── filter.c ├── filter.h ├── optdlg.c ├── optdlg.h ├── strdlg.c ├── strdlg.h ├── readme.txt ├── resource.h ├── send_lgd.h ├── logoscan ├── abort.h ├── abort.cpp ├── approxim.h ├── filter.cpp ├── readme.txt ├── scanpix.h ├── logoscan.rc ├── resultdlg.c ├── resultdlg.h ├── scanpix.cpp ├── resource.h └── makefile ├── logodef.h └── makefile /logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/logo.h -------------------------------------------------------------------------------- /delogo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/delogo.rc -------------------------------------------------------------------------------- /editdlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/editdlg.c -------------------------------------------------------------------------------- /editdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/editdlg.h -------------------------------------------------------------------------------- /filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/filter.c -------------------------------------------------------------------------------- /filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/filter.h -------------------------------------------------------------------------------- /optdlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/optdlg.c -------------------------------------------------------------------------------- /optdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/optdlg.h -------------------------------------------------------------------------------- /strdlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/strdlg.c -------------------------------------------------------------------------------- /strdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/strdlg.h -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/readme.txt -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/resource.h -------------------------------------------------------------------------------- /send_lgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/send_lgd.h -------------------------------------------------------------------------------- /logoscan/abort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/logoscan/abort.h -------------------------------------------------------------------------------- /logoscan/abort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/logoscan/abort.cpp -------------------------------------------------------------------------------- /logoscan/approxim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/logoscan/approxim.h -------------------------------------------------------------------------------- /logoscan/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/logoscan/filter.cpp -------------------------------------------------------------------------------- /logoscan/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/logoscan/readme.txt -------------------------------------------------------------------------------- /logoscan/scanpix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/logoscan/scanpix.h -------------------------------------------------------------------------------- /logoscan/logoscan.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/logoscan/logoscan.rc -------------------------------------------------------------------------------- /logoscan/resultdlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/logoscan/resultdlg.c -------------------------------------------------------------------------------- /logoscan/resultdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/logoscan/resultdlg.h -------------------------------------------------------------------------------- /logoscan/scanpix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makiuchi-d/delogo-aviutl/HEAD/logoscan/scanpix.cpp -------------------------------------------------------------------------------- /logodef.h: -------------------------------------------------------------------------------- 1 | /*==================================================================== 2 | * logodef.h 3 | *===================================================================*/ 4 | #ifndef ___LOGODEF_H 5 | #define ___LOGODEF_H 6 | 7 | #define LOGO_FADE_MAX 256 8 | #define LOGO_XY_MAX 500 9 | #define LOGO_XY_MIN -500 10 | #define LOGO_STED_MAX 256 11 | #define LOGO_STED_MIN -256 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /logoscan/resource.h: -------------------------------------------------------------------------------- 1 | // resorce.h 2 | #ifndef ___RESORCE_H 3 | #define ___RESORCE_H 4 | 5 | // used by resultdlg 6 | #define IDC_SAVE 4200 7 | #define IDC_SEND 4201 8 | #define IDC_CLOSE 4202 9 | #define IDC_EDIT 4203 10 | #define IDC_PANEL 4204 11 | #define IDC_TEXT 4205 12 | #define IDC_GROUP 4206 13 | #define IDC_RED 4103 14 | #define IDC_GREEN 4104 15 | #define IDC_BLUE 4105 16 | #define IDC_SPINR 4106 17 | #define IDC_SPING 4107 18 | #define IDC_SPINB 4108 19 | 20 | // used by abortdlg 21 | #define IDC_EXAMF 4211 22 | #define IDC_ALLF 4212 23 | #define IDC_USEABLE 4213 24 | #define IDC_ABORT 4214 25 | #define IDC_PROGRESS 4215 26 | #define IDC_STATUS 4216 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /logoscan/makefile: -------------------------------------------------------------------------------- 1 | ###################################################################### 2 | # MakeFile for Borland C/C++ Compiler 3 | # 4 | 5 | CC = bcc32 6 | LN = bcc32 7 | RL = brc32 8 | RC = brcc32 9 | 10 | CFLAG = -c -O1 -O2 -Oc -Oi -Ov 11 | LFLAG = -tWD -e$(EXE) -O1 -O2 12 | RFLAG = 13 | 14 | EXE = logoscan.auf 15 | OBJ = filter.obj scanpix.obj resultdlg.obj abort.obj 16 | RES = logoscan.res 17 | 18 | 19 | all: $(EXE) 20 | 21 | 22 | $(EXE): $(OBJ) $(RES) 23 | $(LN) $(LFLAG) $(OBJ) 24 | $(RL) -fe$(EXE) $(RES) 25 | 26 | filter.obj: filter.cpp ..\filter.h ..\logo.h scanpix.h resultdlg.h abort.h 27 | $(CC) $(CFLAG) filter.cpp 28 | 29 | scanpix.obj: scanpix.cpp ..\filter.h ..\logo.h scanpix.h approxim.h 30 | $(CC) $(CFLAG) scanpix.cpp 31 | 32 | resultdlg.obj: resultdlg.c resultdlg.h resource.h ..\filter.h ..\logo.h 33 | $(CC) $(CFLAG) resultdlg.c 34 | 35 | abort.obj: abort.cpp abort.h resource.h 36 | $(CC) $(CFLAG) abort.cpp 37 | 38 | $(RES): logoscan.rc 39 | $(RC) $(RFLAG) logoscan.rc 40 | 41 | -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- 1 | ###################################################################### 2 | # MakeFile for Borland C/C++ Compiler 3 | # 4 | 5 | CC = bcc32 6 | LN = bcc32 7 | RL = brc32 8 | RC = brcc32 9 | 10 | CFLAG = -c -O1 -O2 -Oc -Oi -Ov 11 | LFLAG = -tWD -e$(EXE) -O1 -O2 12 | RFLAG = 13 | 14 | EXE = delogo.auf 15 | OBJ = filter.obj optdlg.obj editdlg.obj strdlg.obj 16 | RES = delogo.res 17 | 18 | 19 | all: $(EXE) 20 | 21 | 22 | $(EXE): $(OBJ) $(RES) 23 | $(LN) $(LFLAG) $(OBJ) 24 | $(RL) -fe$(EXE) $(RES) 25 | 26 | filter.obj: filter.c filter.h logo.h optdlg.h resource.h send_lgd.h strdlg.h logodef.h 27 | $(CC) $(CFLAG) filter.c 28 | 29 | optdlg.obj: optdlg.c optdlg.h filter.h logo.h resource.h editdlg.h 30 | $(CC) $(CFLAG) optdlg.c 31 | 32 | editdlg.obj: editdlg.c editdlg.h resource.h logodef.h logo.h optdlg.h 33 | $(CC) $(CFLAG) editdlg.c 34 | 35 | strdlg.obj: strdlg.c strdlg.h resource.h 36 | $(CC) $(CFLAG) strdlg.c 37 | 38 | $(RES): delogo.rc resource.h 39 | $(RC) $(RFLAG) delogo.rc 40 | 41 | clean: 42 | del *.obj 43 | del *.tds 44 | del *.res 45 | --------------------------------------------------------------------------------