Version: 6.3.4 https://support.pkware.com/display/PKZIP/APPNOTE
シーケンス図とかフローチャートをしごとで描画することになった場合、 テキストから生成できたら楽なので、それ系のツールまとめ
- C製
- Doxygen, Moinmoinなどと連携可能
- ブロック図、クラス図、ネットワーク図など
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// how_to_abort_reading_from_stdin.cpp | |
// | |
// Windowsでコンソールからの1行読み込みを途中で中断するサンプル | |
// | |
// メモ: | |
// * ReadConsole()を使うと入力されるまで制御が帰ってこなくなるので、 | |
// 低レベルAPIのReadConsoleInput()を使用している。 | |
// * GetStdHandle(STD_INPUT_HANDLE)で取れるハンドルに対して | |
// WaitForSingleObject()するとReadConsoleInput()のイベントを待つことになる。 |