この道わが旅 > | 夢幻工房入り口 -> | お仕事 -> | ただいま修行中… |
int charset, charset_temp, num; charset_temp = '0'; num = 0; while( ( charset = getchar() ) != EOF ){ if( charset < ' ' ) continue; if( charset != charset_temp ){ charset_temp = charset; putchar( num ); num = 0; } else if( num == 255 ){ putchar( num ); num = 0; putchar( num ); } num ++; } |
volatile = 揮発性 |
|
0 | 1 | 2 | 3 |
4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 |
代表色 1( 16bit ) | 代表色 0( 16bit ) | ||||||||||||||
パレット 15( 2 bit ) | パレット 14( 2 bit ) | ・ | ・ | ・ | ・ | ・ | ・ | ・ | ・ | ・ | … | … | … | … | パレット 0( 2 bit ) |
//First free the string allocated by MFC at CWinApp startup. // まず CWinApp スタート時に MFC によって割り当ててられた文字列「(実行ファイル名).HLP」を解放しなさい。 //The string is allocated before InitInstance is called. // InitInstance が呼ばれる前に、その文字列「(実行ファイル名).HLP」は、割り当てられています。 free((void*)m_pszHelpFilePath); //Change the name of the .HLP file. // .HLP ファイルの名前を変えましょう。 //The CWinApp destructor will free the memory. // CWinApp のデストラクタは、そのメモリを解放するでしょう。 m_pszHelpFilePath=_tcsdup(_T( "d:\\somedir\\myhelp.hlp" )); |
// stdafx.h などでインクルードしておく #include "htmlhelp.h" void (アプリケーションApp)::WinHelp(DWORD dwData, UINT nCmd) {
|
この道わが旅 > | 夢幻工房入り口 -> | お仕事 -> | ただいま修行中… |