Browse Subversion Repository
Diff of /trunk/teraterm/ttpcmn/ttcmn.c
Parent Directory
| Revision Log
| Patch
| 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.8616 |
|
| changed lines |
| |
Added in v.8828 |
|
|
|