Windows終端螢幕顯示庫Public Domain Curses(PDCurses)使用

來源:互聯網
上載者:User

標籤:分享   代碼   target   好的   lin   編譯   ret   檔案   技術分享   

由於Windows沒有可用的ncurses庫,所以就用PDCurses代替

先放連結 https://sourceforge.net/projects/pdcurses/,下載最新版本

但是我不會編譯,所以直接下載一個編譯好的咯(這是08年更新的)

https://sourceforge.net/projects/pdcurses/files/pdcurses/3.4/

開啟Visual Studio,建立一個win32項目,建立輸入下列代碼

#include <string.h>#include "curses.h"int main(int argc, char* argv[]){    initscr();    raw();    noecho();    curs_set(0);    char* c = "Hello, World!";    mvprintw(LINES / 2, (COLS - strlen(c)) / 2, c);    refresh();    getch();    endwin();    return 0;}

將h檔案和lib檔案放到項目下,dll檔案放到release目錄下,運行

成功!

最新版的添加了很多功能,怎麼編譯等我學會了再更新。

 

Windows終端螢幕顯示庫Public Domain Curses(PDCurses)使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.