Browse Subversion Repository
Diff of /trunk/teraterm/teraterm/vtterm.c
Parent Directory
| Revision Log
| Patch
| 57 |
#include "clipboar.h" |
#include "clipboar.h" |
| 58 |
#include "codeconv.h" |
#include "codeconv.h" |
| 59 |
#include "unicode.h" |
#include "unicode.h" |
| 60 |
|
#include "ttdde.h" |
| 61 |
|
|
| 62 |
#include "vtterm.h" |
#include "vtterm.h" |
| 63 |
|
|
| 455 |
static void Log1Byte(BYTE b) |
static void Log1Byte(BYTE b) |
| 456 |
{ |
{ |
| 457 |
LogPut1(b); |
LogPut1(b); |
| 458 |
|
DDEPut1(b); |
| 459 |
} |
} |
| 460 |
|
|
| 461 |
static void Log1UTF32(vtterm_work_t *vtterm, unsigned int u32) |
static void Log1UTF32(vtterm_work_t *vtterm, unsigned int u32) |
| 6383 |
BYTE b; |
BYTE b; |
| 6384 |
int c; |
int c; |
| 6385 |
|
|
| 6386 |
|
if (DDELog && DDEGetCount() >= InBuffSize - 10) { |
| 6387 |
|
/* バッファに余裕がない場合 */ |
| 6388 |
|
Sleep(1); |
| 6389 |
|
return 0; |
| 6390 |
|
} |
| 6391 |
|
|
| 6392 |
c = CommRead1Byte(&cv,&b); |
c = CommRead1Byte(&cv,&b); |
| 6393 |
|
|
| 6394 |
if (c==0) return 0; |
if (c==0) return 0; |
|
|
Legend:
| Removed from v.8822 |
|
| changed lines |
| |
Added in v.8860 |
|
|
|