scmno****@osdn*****
scmno****@osdn*****
2018年 9月 3日 (月) 19:51:05 JST
Revision: 7211 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/7211 Author: zmatsuo Date: 2018-09-03 19:51:05 +0900 (Mon, 03 Sep 2018) Log Message: ----------- コミット抜け Added Paths: ----------- branches/cmake/teraterm/ttptek/tttek.h -------------- next part -------------- Added: branches/cmake/teraterm/ttptek/tttek.h =================================================================== --- branches/cmake/teraterm/ttptek/tttek.h (rev 0) +++ branches/cmake/teraterm/ttptek/tttek.h 2018-09-03 10:51:05 UTC (rev 7211) @@ -0,0 +1,50 @@ +/* + * Copyright (C) 1994-1998 T. Teranishi + * (C) 2018 TeraTerm Project + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/* TTTEK.DLL, TEK escape sequences */ + +DllExport void WINAPI TEKInit(PTEKVar tk, PTTSet ts); +DllExport void WINAPI TEKChangeCaret(PTEKVar tk, PTTSet ts); +DllExport void WINAPI TEKDestroyCaret(PTEKVar tk, PTTSet ts); +DllExport void WINAPI TEKResizeWindow(PTEKVar tk, PTTSet ts, int W, int H); +DllExport int WINAPI TEKParse(PTEKVar tk, PTTSet ts, PComVar cv); +DllExport void WINAPI TEKReportGIN(PTEKVar tk, PTTSet ts, PComVar cv, BYTE KeyCode); +DllExport void WINAPI TEKPaint(PTEKVar tk, PTTSet ts, HDC PaintDC, PAINTSTRUCT *PaintInfo); +DllExport void WINAPI TEKWMLButtonDown(PTEKVar tk, PTTSet ts, PComVar cv, POINT pos); +DllExport void WINAPI TEKWMLButtonUp(PTEKVar tk, PTTSet ts); +DllExport void WINAPI TEKWMMouseMove(PTEKVar tk, PTTSet ts, POINT p); +DllExport void WINAPI TEKWMSize(PTEKVar tk, PTTSet ts, int W, int H, int cx, int cy); +DllExport void WINAPI TEKCMCopy(PTEKVar tk, PTTSet ts); +DllExport void WINAPI TEKCMCopyScreen(PTEKVar tk, PTTSet ts); +DllExport void WINAPI TEKPrint(PTEKVar tk, PTTSet ts, HDC PrintDC, BOOL SelFlag); +DllExport void WINAPI TEKClearScreen(PTEKVar tk, PTTSet ts); +DllExport void WINAPI TEKSetupFont(PTEKVar tk, PTTSet ts); +DllExport void WINAPI TEKResetWin(PTEKVar tk, PTTSet ts, WORD EmuOld); +DllExport void WINAPI TEKRestoreSetup(PTEKVar tk, PTTSet ts); +DllExport void WINAPI TEKEnd(PTEKVar tk);