?? win.c
字號:
/* * CUnit - A Unit testing framework library for C. * Copyright (C) 2001 Anil Kumar * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *//* * >>> UNDER CONSTRUCTION <<< * * Contains implementation of windows interface. * * Created By : Anil Kumar on ??? * * Modified : 18-Jul-2004 (JDS) * Comment : new interface * EMail : jds2@users.sourceforge.net * */#include <windows.h>#include "Win.h"#include "resource.h"static LRESULT CALLBACK DialogMessageHandler(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam){ (void) hDlg; /* not used at this point */ (void) message; (void) lParam; switch((int)wParam) { default: break; } return 0;}void CU_win_run_tests(void){ HWND hWndDlg = CreateDialog(NULL, (LPCTSTR)IDD_MAIN, NULL, (DLGPROC)DialogMessageHandler); (void) hWndDlg;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -