亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

TChar

  • VCL圖標組件,TChar的經典教程

    VCL圖標組件,TChar的經典教程

    標簽: TChar VCL 教程

    上傳時間: 2013-12-19

    上傳用戶:tyler

  • 西門子與計算機通訊程序包括源代碼 程序說明 可以進行時時數據采集記錄

    西門子與計算機通訊程序包括源代碼 程序說明 可以進行時時數據采集記錄,并可以顯示實時數據 曲線,數據報表功能還未增添,以后有機會會添上,有問題請email我。 通訊控件及控件使用手冊 使用西門子prodave 控件 程序中使用了TChar控件 這是第二版

    標簽: 西門子 源代碼 數據采集 程序

    上傳時間: 2014-08-10

    上傳用戶:qunquan

  • c#簡單計算器

    // 學生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TChar szTitle[MAX_LOADSTRING]; // The title bar text TChar szWindowClass[MAX_LOADSTRING]; // The title bar text // Foward declarations of functions included in this code module: ATOM MyRegisterClass(HINSTANCE hInstance); BOOL InitInstance(HINSTANCE, int); LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); LRESULT CALLBACK About(HWND, UINT, WPARAM, LPARAM); struct person {   char name[10];   int ID;   int cj_yw;   int cj_sx;   struct person* next;   struct person* pro; }per; int APIENTRY WinMain(HINSTANCE hInstance,                      HINSTANCE hPrevInstance,                      LPSTR     lpCmdLine,                      int       nCmdShow) {   // TODO: Place code here. MSG msg; HACCEL hAccelTable; // Initialize global strings LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING); LoadString(hInstance, IDC_MY, szWindowClass, MAX_LOADSTRING); MyRegisterClass(hInstance); // Perform application initialization: if (!InitInstance (hInstance, nCmdShow))  { return FALSE; } hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDC_MY); // Main message loop: while (GetMessage(&msg, NULL, 0, 0))  { if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))  { TranslateMessage(&msg); DispatchMessage(&msg); } } return msg.wParam; } // //  FUNCTION: MyRegisterClass() // //  PURPOSE: Registers the window class. // //  COMMENTS: // //    This function and its usage is only necessary if you want this code //    to be compatible with Win32 systems prior to the 'RegisterClassEx' //    function that was added to Windows 95. It is important to call this function //    so that the application will get 'well formed' small icons associated //    with it. // ATOM MyRegisterClass(HINSTANCE hInstance) { WNDCLASSEX wcex; wcex.cbSize = sizeof(WNDCLASSEX);  wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = (WNDPROC)WndProc; wcex.cbClsExtra = 0; wcex.cbWndExtra = 0; wcex.hInstance = hInstance; wcex.hIcon = LoadIcon(hInstance, (LPCTSTR)IDI_MY); wcex.hCursor = LoadCursor(NULL, IDC_ARROW); wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); wcex.lpszMenuName = (LPCSTR)IDC_MY; wcex.lpszClassName = szWindowClass; wcex.hIconSm = LoadIcon(wcex.hInstance, (LPCTSTR)IDI_SMALL); return RegisterClassEx(&wcex); } // //   FUNCTION: InitInstance(HANDLE, int) // //   PURPOSE: Saves instance handle and creates main window // //   COMMENTS: // //        In this function, we save the instance handle in a global variable and //        create and display the main program window. // BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) {    HWND hWnd;    hInst = hInstance; // Store instance handle in our global variable    hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);    if (!hWnd)    {       return FALSE;    }    ShowWindow(hWnd, nCmdShow);    UpdateWindow(hWnd);    return TRUE; } // //  FUNCTION: WndProc(HWND, unsigned, WORD, LONG) // //  PURPOSE:  Processes messages for the main window. // //  WM_COMMAND - process the application menu //  WM_PAINT - Paint the main window //  WM_DESTROY - post a quit message and return // // LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { int wmId, wmEvent; PAINTSTRUCT ps; HDC hdc; TChar szHello[MAX_LOADSTRING]; LoadString(hInst, IDS_HELLO, szHello, MAX_LOADSTRING); switch (message)  { case WM_COMMAND: wmId    = LOWORD(wParam);  wmEvent = HIWORD(wParam);  // Parse the menu selections: switch (wmId) { case IDM_ABOUT:   DialogBox(hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About);   break; case IDM_EXIT:   DestroyWindow(hWnd);   break; default:   return DefWindowProc(hWnd, message, wParam, lParam); } break; case WM_PAINT: hdc = BeginPaint(hWnd, &ps); // TODO: Add any drawing code here... RECT rt; GetClientRect(hWnd, &rt); DrawText(hdc, szHello, strlen(szHello), &rt, DT_CENTER); EndPaint(hWnd, &ps); break; case WM_DESTROY: PostQuitMessage(0); break; default: return DefWindowProc(hWnd, message, wParam, lParam);    }    return 0; } // Mesage handler for about box. LRESULT CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_INITDIALOG: return TRUE; case WM_COMMAND: if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)  { EndDialog(hDlg, LOWORD(wParam)); return TRUE; } break; }     return FALSE; }

    標簽: 計算器 學生

    上傳時間: 2016-12-29

    上傳用戶:767483511

  • 簡單的計算器

    // 學生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TChar szTitle[MAX_LOADSTRING]; // The title bar text TChar szWindowClass[MAX_LOADSTRING]; // The title bar text // Foward declarations of functions included in this code module: ATOM MyRegisterClass(HINSTANCE hInstance); BOOL InitInstance(HINSTANCE, int); LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); LRESULT CALLBACK About(HWND, UINT, WPARAM, LPARAM); struct person {   char name[10];   int ID;   int cj_yw;   int cj_sx;   struct person* next;   struct person* pro; }per; int APIENTRY WinMain(HINSTANCE hInstance,                      HINSTANCE hPrevInstance,                      LPSTR     lpCmdLine,                      int       nCmdShow) {   // TODO: Place code here. MSG msg; HACCEL hAccelTable; // Initialize global strings LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING); LoadString(hInstance, IDC_MY, szWindowClass, MAX_LOADSTRING); MyRegisterClass(hInstance); // Perform application initialization: if (!InitInstance (hInstance, nCmdShow))  { return FALSE; } hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDC_MY); // Main message loop: while (GetMessage(&msg, NULL, 0, 0))  { if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))  { TranslateMessage(&msg); DispatchMessage(&msg); } } return msg.wParam; } // //  FUNCTION: MyRegisterClass() // //  PURPOSE: Registers the window class. // //  COMMENTS: // //    This function and its usage is only necessary if you want this code //    to be compatible with Win32 systems prior to the 'RegisterClassEx' //    function that was added to Windows 95. It is important to call this function //    so that the application will get 'well formed' small icons associated //    with it. // ATOM MyRegisterClass(HINSTANCE hInstance) { WNDCLASSEX wcex; wcex.cbSize = sizeof(WNDCLASSEX);  wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = (WNDPROC)WndProc; wcex.cbClsExtra = 0; wcex.cbWndExtra = 0; wcex.hInstance = hInstance; wcex.hIcon = LoadIcon(hInstance, (LPCTSTR)IDI_MY); wcex.hCursor = LoadCursor(NULL, IDC_ARROW); wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); wcex.lpszMenuName = (LPCSTR)IDC_MY; wcex.lpszClassName = szWindowClass; wcex.hIconSm = LoadIcon(wcex.hInstance, (LPCTSTR)IDI_SMALL); return RegisterClassEx(&wcex); } // //   FUNCTION: InitInstance(HANDLE, int) // //   PURPOSE: Saves instance handle and creates main window // //   COMMENTS: // //        In this function, we save the instance handle in a global variable and //        create and display the main program window. // BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) {    HWND hWnd;    hInst = hInstance; // Store instance handle in our global variable    hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);    if (!hWnd)    {       return FALSE;    }    ShowWindow(hWnd, nCmdShow);    UpdateWindow(hWnd);    return TRUE; } // //  FUNCTION: WndProc(HWND, unsigned, WORD, LONG) // //  PURPOSE:  Processes messages for the main window. // //  WM_COMMAND - process the application menu //  WM_PAINT - Paint the main window //  WM_DESTROY - post a quit message and return // // LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { int wmId, wmEvent; PAINTSTRUCT ps; HDC hdc; TChar szHello[MAX_LOADSTRING]; LoadString(hInst, IDS_HELLO, szHello, MAX_LOADSTRING); switch (message)  { case WM_COMMAND: wmId    = LOWORD(wParam);  wmEvent = HIWORD(wParam);  // Parse the menu selections: switch (wmId) { case IDM_ABOUT:   DialogBox(hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About);   break; case IDM_EXIT:   DestroyWindow(hWnd);   break; default:   return DefWindowProc(hWnd, message, wParam, lParam); } break; case WM_PAINT: hdc = BeginPaint(hWnd, &ps); // TODO: Add any drawing code here... RECT rt; GetClientRect(hWnd, &rt); DrawText(hdc, szHello, strlen(szHello), &rt, DT_CENTER); EndPaint(hWnd, &ps); break; case WM_DESTROY: PostQuitMessage(0); break; default: return DefWindowProc(hWnd, message, wParam, lParam);    }    return 0; } // Mesage handler for about box. LRESULT CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_INITDIALOG: return TRUE; case WM_COMMAND: if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)  { EndDialog(hDlg, LOWORD(wParam)); return TRUE; } break; }     return FALSE; }

    標簽: 學生 計算器

    上傳時間: 2016-12-29

    上傳用戶:767483511

  • 在STM32F429I-Discovery上移植FATFS 0.13 最新版

    1、下載FATFS R0.13a的源碼2、將下載到的源碼全部替代工程里面舊版FATFS, 四個源代碼文件,其中 diskio.c 不要加入工程,因為其核心函數被加入了 usbh_msc_fatfs.c3、根據實際使用情況修改ffconf.h 里面的宏開關選項,與舊版不同的部分列出如下:#define FF_CODE_PAGE        936   // 簡體中文#define FF_USE_LFN                3      // 允許長文件名,工作緩沖放在 HEAP,因此我在工程選項中把HEAP size 設為了0x1000#define FF_FS_EXFAT                1      // 允許支持 exFAT 文件系統#define FF_LFN_UNICODE        1      // 長文件名支持 Unicode in UTF-16 (TChar = WCHAR)4、基本上到此可以編譯了,編譯過程中會出現各種錯誤,主要新版沒有完全向下兼容的原因引起,根據不同情況針對性解決后,編譯OK     比如, f_mount 調用,等等    if ( f_mount( &fatfs, "", 0 ) != FR_OK )   { 。。。}        // Fatfs0.09升級到0.13后,形參變化了

    標簽: stm32f429i fatfs

    上傳時間: 2022-07-03

    上傳用戶:

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区精品国产| 久久久精品2019中文字幕神马| 久久er99精品| 午夜一区二区三区不卡视频| 亚洲深夜福利视频| 一区二区免费在线播放| 亚洲乱码视频| 亚洲自拍16p| 欧美一区二区在线看| 久久大综合网| 美脚丝袜一区二区三区在线观看 | 亚洲日韩欧美视频一区| 亚洲国产一区在线| 一区二区三区精品| 欧美在线视频免费播放| 亚洲自拍偷拍一区| 久久精品免费看| 欧美日韩一区二区三区高清| 国产欧美精品日韩区二区麻豆天美| 国内精品国产成人| 欧美与黑人午夜性猛交久久久| 欧美高清在线| 亚洲精品中文在线| 欧美国产三区| 99re66热这里只有精品3直播| 免费成人小视频| 亚洲国产裸拍裸体视频在线观看乱了| 一区二区三区偷拍| 欧美性淫爽ww久久久久无| 亚洲精品自在在线观看| 亚洲女女女同性video| 欧美日韩一二三区| 午夜精品视频一区| 国产一区二区三区在线免费观看| 亚洲综合不卡| 国产精品久久久久aaaa樱花| 亚洲精品国精品久久99热一| 久久精品72免费观看| 欧美日韩精品一区二区| 亚洲三级电影在线观看| 免费日韩精品中文字幕视频在线| 欧美日本网站| 亚洲综合国产激情另类一区| 国产精品久久久久久久久免费桃花 | 亚洲永久字幕| 欧美性猛交视频| 99精品国产在热久久| 欧美日韩国产999| 亚洲看片网站| 欧美日韩亚洲天堂| 在线一区二区日韩| 欧美日韩免费| 夜夜嗨av一区二区三区四季av| 欧美高清一区| 香蕉久久精品日日躁夜夜躁| 国产欧美一区二区精品忘忧草 | 久久精品伊人| 亚洲免费观看| 国产精品一区二区在线观看不卡| 欧美一区二区久久久| 亚洲成人在线| 国产精品私房写真福利视频| 久久国产精品99久久久久久老狼| 极品尤物久久久av免费看| 欧美日韩视频一区二区三区| 一区二区不卡在线视频 午夜欧美不卡在| 国产精品二区影院| 亚洲一区日韩在线| 亚洲精品自在久久| 亚洲福利在线观看| 国产亚洲精品aa| 国产精品va在线| 欧美高清视频在线| 久色婷婷小香蕉久久| 欧美在线视频一区二区三区| 99国产精品一区| 在线日韩一区二区| 在线精品一区二区| 伊人狠狠色j香婷婷综合| 国产精品久久夜| 欧美三区视频| 欧美日本高清一区| 欧美顶级少妇做爰| 久久精品国产亚洲aⅴ| 亚洲欧美日韩一区二区| 激情欧美日韩| 在线看国产日韩| 亚洲国产小视频在线观看| 在线视频成人| 日韩视频永久免费| 亚洲桃花岛网站| 欧美一区二区私人影院日本| 午夜免费久久久久| 久久久久久久久伊人| 亚洲一区在线免费| 欧美一区二区免费观在线| 亚洲综合久久久久| 欧美一区二区免费观在线| 久久国产精品久久久久久电车| 欧美一区2区视频在线观看 | 亚洲免费久久| 亚洲免费影视| 久久影院午夜片一区| 欧美精品久久久久久| 欧美日韩精品免费观看| 久久精品99国产精品日本| 久久在线视频| 国产精品亚洲综合久久| 亚洲成在线观看| 午夜精品电影| 欧美日韩人人澡狠狠躁视频| 国产区精品视频| 一区二区免费看| 新狼窝色av性久久久久久| 久久亚洲综合色| 国产精品推荐精品| 亚洲高清色综合| 亚洲欧美在线磁力| 欧美精品色综合| 国内外成人免费激情在线视频网站| 91久久精品网| 久久天天躁狠狠躁夜夜av| 欧美性大战久久久久久久| 国产一区二区三区精品久久久| 精品69视频一区二区三区| 亚洲精品自在久久| 欧美高清一区| 国产亚洲欧美色| 性做久久久久久久免费看| 国产精品久久久久国产精品日日| 亚洲视频免费在线观看| 国产伦理一区| 亚洲午夜精品久久久久久浪潮 | 香蕉久久国产| 久久精品中文字幕一区| 精品成人国产| 欧美激情国产高清| 亚洲国产日韩欧美综合久久| 欧美成人精品在线观看| 99热精品在线| 黄色资源网久久资源365| 久久久久久夜| 国产一区二区三区av电影| 亚洲精品美女免费| 亚洲精品美女| 欧美激情精品| 亚洲伊人一本大道中文字幕| 欧美图区在线视频| 久久爱91午夜羞羞| 亚洲精品国产视频| 国产精品成人免费视频| 亚洲欧美日韩区| 伊人成综合网伊人222| 久久精品国产免费看久久精品| 亚洲高清不卡在线| 欧美调教视频| 久久尤物视频| 亚洲午夜成aⅴ人片| 精品福利免费观看| 国产精品亚洲综合久久| 蜜桃av一区二区在线观看| 日韩亚洲欧美中文三级| 国产一区二区三区奇米久涩 | 怡红院精品视频| 欧美激情女人20p| 久久精品国产77777蜜臀| 亚洲精品自在久久| 激情欧美一区二区三区在线观看| 国产精品久线观看视频| 欧美高清在线| 久久精品久久综合| 一二三四社区欧美黄| 亚洲国产精品久久久久秋霞蜜臀| 国产视频在线观看一区| 欧美日韩亚洲一区| 欧美成人精品1314www| 久久精品国产69国产精品亚洲| 亚洲福利视频网| 在线观看福利一区| 国产日韩精品视频一区| 欧美日韩午夜| 免费在线欧美黄色| 亚洲一区尤物| 午夜在线观看免费一区| 亚洲视频播放| 一本久久a久久免费精品不卡| 在线不卡中文字幕播放| 亚洲欧洲另类国产综合| 亚洲第一页中文字幕| 国产在线乱码一区二区三区| 国产精品捆绑调教| 欧美三级日本三级少妇99| 国产精品乱码人人做人人爱| 欧美天天综合网| 欧美午夜一区二区| 欧美日韩一区二区高清| 国产精品久久网| 久久久久久欧美| 久久综合一区二区| 亚洲美女黄色片|