mkautaux.bat
来自「这是用C编写IMAP源代码」· Batch 代码 · 共 26 行
BAT
26 行
@ECHO OFFREM Program: Authenticator Linkage Generator auxillary for NT/Win9xREMREM Author: Mark CrispinREM Networks and Distributed ComputingREM Computing & CommunicationsREM University of WashingtonREM Administration Building, AG-44REM Seattle, WA 98195REM Internet: MRC@CAC.Washington.EDUREMREM Date: 6 December 1995REM Last Edited:24 October 2000REMREM The IMAP toolkit provided in this Distribution isREM Copyright 2000 University of Washington.REMREM The full text of our legal notices is contained in the file calledREM CPYRIGHT, included with this Distribution.ECHO extern AUTHENTICATOR auth_%1; >> LINKAGE.HREM Note the introduction of the caret to quote the ampersand in NTif "%OS%" == "Windows_NT" ECHO auth_link (^&auth_%1); /* link in the %1 authenticator */ >> LINKAGE.Cif "%OS%" == "" ECHO auth_link (&auth_%1); /* link in the %1 authenticator */ >> LINKAGE.CECHO #include "auth_%1.c" >> AUTHS.C
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?