Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/teraterm/ttpcmn/ttcmn.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 8827 by zmatsuo, Mon Mar 23 15:54:26 2020 UTC revision 8828 by zmatsuo, Fri Jul 3 14:43:44 2020 UTC
# Line 60  Line 60 
60  #include "ttcommon.h"  #include "ttcommon.h"
61  #include "layer_for_unicode.h"  #include "layer_for_unicode.h"
62    
63    /* shared memory */
64    typedef struct {
65            size_t size_tmap;               /* sizeof TMap */
66            size_t size_tttset;             /* sizeof TTTSet */
67            /* Setup information from "teraterm.ini" */
68            TTTSet ts;
69            /* Key code map from "keyboard.def" */
70            TKeyMap km;
71            // Window list
72            int NWin;
73            HWND WinList[MAXNWIN];
74            /* COM port use flag
75             *           bit 8  7  6  5  4  3  2  1
76             * char[0] : COM 8  7  6  5  4  3  2  1
77             * char[1] : COM16 15 14 13 12 11 10  9 ...
78             */
79            unsigned char ComFlag[(MAXCOMPORT-1)/CHAR_BIT+1];
80            /* Previous window rect (Tera Term 4.78 or later) */
81            WINDOWPLACEMENT WinPrevRect[MAXNWIN];
82            BOOL WinUndoFlag;
83            int WinUndoStyle;
84    } TMap;
85    typedef TMap *PMap;
86    
87  // TMap を格納するファイルマッピングオブジェクト(共有メモリ)の名前  // TMap を格納するファイルマッピングオブジェクト(共有メモリ)の名前
88  // TMap(とそのメンバ)の更新時は旧バージョンとの同時起動の為に変える必要があるが  // TMap(とそのメンバ)の更新時は旧バージョンとの同時起動の為に変える必要があるが

Legend:
Removed from v.8827  
changed lines
  Added in v.8828

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26