home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1999 February / VPR9902A.BIN / Vpr_data / Program / ce / LVtips / About.c next >
C/C++ Source or Header  |  1998-11-25  |  571b  |  32 lines

  1. //
  2. //    「LVtips」    About.c
  3. //        Author    WindowsCE Users Group
  4. //
  5. #include    <windows.h>
  6. #include    "resource.h"
  7.  
  8. //----------------------------------------------------------------------------
  9. //    「バージョン情報」
  10. LRESULT CALLBACK AboutProc(
  11.     HWND    hDlg,
  12.     UINT    uMessage,
  13.     WPARAM    wParam,
  14.     LPARAM    lParam)
  15. //----------------------------------------------------------------------------
  16. {
  17.  
  18.     switch (uMessage)
  19.     {
  20.     case WM_COMMAND:
  21.         switch(wParam)
  22.         {
  23.         case IDOK:            //「OK」を選択
  24.             EndDialog(hDlg, TRUE);
  25.             return TRUE;
  26.         }
  27.         break;
  28.     }
  29.  
  30.     return FALSE;
  31. }
  32.