home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- REM
- REM This batch-file takes the encryption-code data generated by the
- REM RANDCODE.PAS program, and converts it from "binary" file format
- REM "object" file format using the Borland utility BINOBJ.EXE.
- REM This will allow the encryption-codes to be linked directly into
- REM a compiled .EXE's code-segment, effectively hiding them in your
- REM program.
- ECHO
- ECHO Converting binary ECODE1.DAT file to ECODE1.OBJ file
- ECHO
- BINOBJ ECODE1.DAT ECODE1.OBJ Ecode1Data
- ECHO
- ECHO Converting binary ECODE2.DAT file to ECODE2.OBJ file
- ECHO
- BINOBJ ECODE2.DAT ECODE2.OBJ Ecode2Data
- ECHO
-