实例介绍
此文件是前面所说的修改后支持freetype后的miniGUI的库源码,该文件在需要使用TTF字体时将会解决你很大的烦恼,建议不使用TTF字体的程序,不用该库,因为会增加编译时间(虽然很少量),此库安装后,编译MiniGUI程序都需要带-ttf选项,不然会编译不通过,请谨记。 至此手头所有MiniGUI1.6.10相关的源码、库、资源等文件均上传成功,请大家酌情下载。
【实例截图】
【核心代码】
libminigui-1.6.10-ttf.tar
└── libminigui-1.6.10
├── acinclude.m4
├── aclocal.m4
├── AUTHORS
├── autom4te.cache
│ ├── output.0
│ ├── requests
│ └── traces.0
├── ChangeLog
├── config.guess
├── config.log
├── config.status
├── config.sub
├── configure
├── configure.in
├── COPYING
├── depcomp
├── etc
│ ├── Makefile
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── MiniGUI-classic.cfg
│ ├── MiniGUI-fashion.cfg
│ ├── MiniGUI-flat.cfg
│ └── MiniGUI-min.cfg
├── ext
│ ├── AUTHORS
│ ├── control
│ │ ├── animation.c
│ │ ├── animation_impl.h
│ │ ├── coolbar.c
│ │ ├── coolbar_impl.h
│ │ ├── gif89a.c
│ │ ├── gridview.c
│ │ ├── gridviewcelltype.c
│ │ ├── gridview_impl.h
│ │ ├── iconview.c
│ │ ├── iconview_impl.h
│ │ ├── initmgext.c
│ │ ├── listview.c
│ │ ├── listview_impl.h
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── monthcalendar.c
│ │ ├── monthcalendar_impl.h
│ │ ├── spinbox.c
│ │ ├── spinbox_impl.h
│ │ ├── treeview.c
│ │ └── treeview_impl.h
│ ├── include
│ │ ├── colordlg.h
│ │ ├── colorspace.h
│ │ ├── ext
│ │ │ ├── animation.h
│ │ │ ├── coolbar.h
│ │ │ ├── gridview.h
│ │ │ ├── iconview.h
│ │ │ ├── listview.h
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── makefile.msvc
│ │ │ ├── makefile.ng
│ │ │ ├── monthcal.h
│ │ │ ├── spinbox.h
│ │ │ └── treeview.h
│ │ ├── filedlg.h
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── makefile.msvc
│ │ ├── makefile.ng
│ │ ├── mgext.h
│ │ ├── mywindows.h
│ │ ├── newfiledlg.h
│ │ └── skin.h
│ ├── Makefile
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── mywins
│ │ ├── colordlg.c
│ │ ├── colorspace.c
│ │ ├── filedlg.c
│ │ ├── helpwin.c
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── mywindows.c
│ │ └── newfiledlg.c
│ ├── README
│ ├── res
│ │ ├── folder.ico
│ │ ├── fold.ico
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── textfile.ico
│ │ └── unfold.ico
│ ├── skin
│ │ ├── bmplabel.c
│ │ ├── bmplabel.h
│ │ ├── chkbutton.c
│ │ ├── chkbutton.h
│ │ ├── cmdbutton.c
│ │ ├── cmdbutton.h
│ │ ├── item_comm.h
│ │ ├── label.c
│ │ ├── label.h
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── mgcontrol.c
│ │ ├── mgcontrol.h
│ │ ├── rotslider.c
│ │ ├── rotslider.h
│ │ ├── skin.c
│ │ ├── slider.c
│ │ └── slider.h
│ ├── template.c
│ └── template.h
├── include
│ ├── common.h
│ ├── control.h
│ ├── ctrl
│ │ ├── button.h
│ │ ├── combobox.h
│ │ ├── ctrlhelper.h
│ │ ├── edit.h
│ │ ├── listbox.h
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── makefile.msvc
│ │ ├── makefile.ng
│ │ ├── menubutton.h
│ │ ├── newtoolbar.h
│ │ ├── progressbar.h
│ │ ├── propsheet.h
│ │ ├── scrollbar.h
│ │ ├── scrollview.h
│ │ ├── static.h
│ │ ├── textedit.h
│ │ ├── toolbar.h
│ │ └── trackbar.h
│ ├── dti.c
│ ├── endianrw.h
│ ├── fixedmath.h
│ ├── gdi.h
│ ├── Makefile
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── makefile.msvc
│ ├── makefile.ng
│ ├── minigui.h
│ ├── nucleus_pthread.h
│ ├── nucleus_semaphore.h
│ ├── ose_semaphore.h
│ ├── own_malloc.h
│ ├── own_stdio.h
│ ├── psos_pthread.h
│ ├── psos_semaphore.h
│ ├── threadx_pthread.h
│ ├── threadx_semaphore.h
│ ├── ucos2_pthread.h
│ ├── ucos2_semaphore.h
│ ├── vcongui.h
│ ├── vxworks_pthread.h
│ ├── vxworks_semaphore.h
│ ├── win32_dirent.h
│ ├── win32_pthread.h
│ ├── win32_sched.h
│ ├── win32_semaphore.h
│ └── window.h
├── INSTALL
├── install-sh
├── libtool
├── LICENSE.POLICY
├── LICENSE.POLICY.zh
├── ltmain.sh
├── m4
│ ├── libtool.m4
│ ├── Makefile
│ ├── Makefile.am
│ └── Makefile.in
├── Makefile
├── Makefile.am
├── Makefile.in
├── mgconfig.h
├── mgconfig.h.in
├── missing
├── mkinstalldirs
├── NEWS
├── README
├── src
│ ├── control
│ │ ├── button.c
│ │ ├── combobox.c
│ │ ├── ctrlmisc.c
│ │ ├── edit.c
│ │ ├── listbox.c
│ │ ├── listmodel.c
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── menubutton.c
│ │ ├── newtoolbar.c
│ │ ├── progressbar.c
│ │ ├── propsheet.c
│ │ ├── scrolled.c
│ │ ├── scrollview.c
│ │ ├── scrollwnd.c
│ │ ├── simedit.c
│ │ ├── static.c
│ │ ├── textedit.c
│ │ ├── toolbar.c
│ │ └── trackbar.c
│ ├── font
│ │ ├── big5unimap.c
│ │ ├── charset.c
│ │ ├── charset.h
│ │ ├── devfont.c
│ │ ├── fontname.c
│ │ ├── freetype.c
│ │ ├── freetype.c.bak
│ │ ├── freetype.h
│ │ ├── gbunimap.c
│ │ ├── in-core
│ │ │ ├── 6x12-iso8859-1.c
│ │ │ ├── 8x16-iso8859-1.c
│ │ │ ├── courier_8x13.c
│ │ │ ├── fixedsys_8x15.c
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── ming-12-big5.c
│ │ │ ├── ming-16-big5.c
│ │ │ ├── qpf-helvetica-10.c
│ │ │ ├── qpf-micro-4.c
│ │ │ ├── qpf-times-10.c
│ │ │ ├── sansserif_11x13.c
│ │ │ ├── song-12-gb2312.c
│ │ │ ├── song-16-gb2312.c
│ │ │ ├── symb12.c
│ │ │ ├── system_14x16.c
│ │ │ ├── terminal_8x12.c
│ │ │ ├── vbf_helvR16.c
│ │ │ ├── vbf_helvR21.c
│ │ │ ├── vbf_helvR27.c
│ │ │ └── vgarom_8x8.c
│ │ ├── logfont.c
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── mapunitobig5.c
│ │ ├── mapunitogb.c
│ │ ├── qpf.c
│ │ ├── qpf.h
│ │ ├── rawbitmap.c
│ │ ├── rawbitmap.h
│ │ ├── sysfont.c
│ │ ├── textops.c
│ │ ├── varbitmap.c
│ │ └── varbitmap.h
│ ├── gui
│ │ ├── accelkey.c
│ │ ├── caret.c
│ │ ├── ctrlclass.c
│ │ ├── defkeymap.c
│ │ ├── de-kmap.c
│ │ ├── de-latin1-kmap.c
│ │ ├── dialog.c
│ │ ├── element.c
│ │ ├── es-cp850-kmap.c
│ │ ├── es-kmap.c
│ │ ├── fr-kmap.c
│ │ ├── fr-pc-kmap.c
│ │ ├── it-kmap.c
│ │ ├── keyboard.c
│ │ ├── keyboard.h
│ │ ├── linux_kd.h
│ │ ├── linux_keyboard.h
│ │ ├── linux_types.h
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── menu.c
│ │ └── window.c
│ ├── ial
│ │ ├── 2410.c
│ │ ├── 2410.h
│ │ ├── abssig.c
│ │ ├── abssig.h
│ │ ├── abs_signal_driver.c
│ │ ├── abs_signal_driver.h
│ │ ├── ads7846.c
│ │ ├── ads7846.h
│ │ ├── ads.c
│ │ ├── ads.h
│ │ ├── ads_internal.h
│ │ ├── arm3000.c
│ │ ├── arm3000.h
│ │ ├── auto.c
│ │ ├── auto.h
│ │ ├── c33l05.c
│ │ ├── c33l05.h
│ │ ├── comminput.c
│ │ ├── comminput.h
│ │ ├── custom.c
│ │ ├── custom.h
│ │ ├── dfb.c
│ │ ├── dfb.h
│ │ ├── dm270.c
│ │ ├── dm270.h
│ │ ├── dmg-stb.c
│ │ ├── dmg-stb.h
│ │ ├── dummy.c
│ │ ├── dummy.h
│ │ ├── em85.c
│ │ ├── em85.h
│ │ ├── em8620.c
│ │ ├── em8620.h
│ │ ├── em86.c
│ │ ├── em86.h
│ │ ├── embest2410.c
│ │ ├── embest2410.h
│ │ ├── embest44b0.c
│ │ ├── embest44b0.h
│ │ ├── ep7211.c
│ │ ├── ep7211.h
│ │ ├── ep7211_internal.h
│ │ ├── evmv10.c
│ │ ├── evmv10.h
│ │ ├── fft7202.c
│ │ ├── fft7202.h
│ │ ├── figueroa.c
│ │ ├── figueroa.h
│ │ ├── fip.c
│ │ ├── fip.h
│ │ ├── fxrm9200.c
│ │ ├── fxrm9200.h
│ │ ├── helio.c
│ │ ├── helio.h
│ │ ├── hh2410r3.c
│ │ ├── hh2410r3.h
│ │ ├── hh2440.c
│ │ ├── hh2440.h
│ │ ├── hh5249kbdir.c
│ │ ├── hh5249kbdir.h
│ │ ├── hi3510.c
│ │ ├── hi3510.h
│ │ ├── ial.c
│ │ ├── ipaq.c
│ │ ├── ipaq.h
│ │ ├── l7200.c
│ │ ├── l7200.h
│ │ ├── libmc.h
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── mc68x328.c
│ │ ├── mc68x328.h
│ │ ├── mpc823.c
│ │ ├── mpc823.h
│ │ ├── native
│ │ │ ├── kbd_tty.c
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── mou_gpm.c
│ │ │ ├── mou_imps2.c
│ │ │ ├── mou_ms3.c
│ │ │ ├── mou_ms.c
│ │ │ ├── mou_ps2.c
│ │ │ ├── native.c
│ │ │ ├── native.h
│ │ │ ├── README
│ │ │ └── vtswitch-lite.c
│ │ ├── palm2.c
│ │ ├── palm2.h
│ │ ├── ps2-conv.c
│ │ ├── ps2-keycode.h
│ │ ├── px255b.c
│ │ ├── px255b.h
│ │ ├── qvfb.c
│ │ ├── qvfb.h
│ │ ├── random.c
│ │ ├── random.h
│ │ ├── skyeye-ep7312.c
│ │ ├── skyeye-ep7312.h
│ │ ├── spec_general_ts_drv.html
│ │ ├── svpxx.c
│ │ ├── svpxx.h
│ │ ├── t800.c
│ │ ├── t800.h
│ │ ├── tf-code.h
│ │ ├── tf-stb.c
│ │ ├── tf-stb.h
│ │ ├── ucb1x00.c
│ │ ├── ucb1x00.h
│ │ ├── utpmc.c
│ │ ├── utpmc.h
│ │ ├── vr4181.c
│ │ ├── vr4181.h
│ │ ├── winial.c
│ │ ├── winial.h
│ │ ├── wvfb.h
│ │ └── wvfbial.c
│ ├── include
│ │ ├── accelkey.h
│ │ ├── bitmap.h
│ │ ├── blockheap.h
│ │ ├── client.h
│ │ ├── clipboard.h
│ │ ├── cliprect.h
│ │ ├── control
│ │ │ ├── button_impl.h
│ │ │ ├── combobox_impl.h
│ │ │ ├── ctrlmisc.h
│ │ │ ├── edit_impl.h
│ │ │ ├── listbox_impl.h
│ │ │ ├── listmodel.h
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── medit_impl.h
│ │ │ ├── menubutton_impl.h
│ │ │ ├── newtoolbar_impl.h
│ │ │ ├── progressbar_impl.h
│ │ │ ├── propsheet_impl.h
│ │ │ ├── scrolled.h
│ │ │ ├── scrollview_impl.h
│ │ │ ├── scrollwnd.h
│ │ │ ├── simedit_impl.h
│ │ │ ├── static_impl.h
│ │ │ ├── textedit_impl.h
│ │ │ ├── text.h
│ │ │ ├── toolbar_impl.h
│ │ │ └── trackbar_impl.h
│ │ ├── ctrlclass.h
│ │ ├── cursor.h
│ │ ├── dc.h
│ │ ├── devfont.h
│ │ ├── drawsemop.h
│ │ ├── element.h
│ │ ├── event.h
│ │ ├── fontname.h
│ │ ├── gal.h
│ │ ├── ial.h
│ │ ├── icon.h
│ │ ├── incoreres.h
│ │ ├── inline.h
│ │ ├── internals.h
│ │ ├── list.h
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── memops.h
│ │ ├── menu.h
│ │ ├── misc.h
│ │ ├── msgstr.h
│ │ ├── newgal.h
│ │ ├── oldgal.h
│ │ ├── ourhdr.h
│ │ ├── readbmp.h
│ │ ├── server.h
│ │ ├── sharedres.h
│ │ ├── sockio.h
│ │ ├── sysfont.h
│ │ ├── sysres.h
│ │ ├── timer.h
│ │ └── zi-procs.h
│ ├── kernel
│ │ ├── blockheap.c
│ │ ├── cursor.c
│ │ ├── desktop-comm.c
│ │ ├── desktop-ths.c
│ │ ├── event.c
│ │ ├── fixstr.c
│ │ ├── init.c
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── message.c
│ │ ├── sharedres.c
│ │ ├── slotset.c
│ │ └── timer.c
│ ├── main
│ │ ├── main.c
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ └── Makefile.in
│ ├── Makefile
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── misc
│ │ ├── about.c
│ │ ├── clipboard.c
│ │ ├── endianrw.c
│ │ ├── error.c
│ │ ├── listenfd.c
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── math.c
│ │ ├── misc.c
│ │ ├── nposix.c
│ │ ├── rwops.c
│ │ ├── sockio.c
│ │ └── systext.c
│ ├── mybmp
│ │ ├── gif.c
│ │ ├── jpeg.c
│ │ ├── lbm.c
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── mybmp.c
│ │ ├── pcx.c
│ │ ├── png.c
│ │ ├── tga.c
│ │ └── winbmp.c
│ ├── newgal
│ │ ├── blit_0.c
│ │ ├── blit_1.c
│ │ ├── blit_A.c
│ │ ├── blit_A.h
│ │ ├── blit.c
│ │ ├── blit.h
│ │ ├── blit_N.c
│ │ ├── commlcd
│ │ │ ├── axlinux_c33l05.c
│ │ │ ├── axlinux_c33l05.h
│ │ │ ├── commlcd.c
│ │ │ ├── commlcd.h
│ │ │ ├── ecos_generic.c
│ │ │ ├── extern.c
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── makefile.msvc
│ │ │ ├── makefile.ng
│ │ │ └── ose_mx21.c
│ │ ├── dummy
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── makefile.msvc
│ │ │ ├── makefile.ng
│ │ │ ├── nullvideo.c
│ │ │ └── nullvideo.h
│ │ ├── fbcon
│ │ │ ├── 3dfx_mmio.h
│ │ │ ├── 3dfx_regs.h
│ │ │ ├── fb3dfx.c
│ │ │ ├── fb3dfx.h
│ │ │ ├── fbmatrox.c
│ │ │ ├── fbmatrox.h
│ │ │ ├── fbneomagic.c
│ │ │ ├── fbneomagic.h
│ │ │ ├── fbvideo.c
│ │ │ ├── fbvideo.h
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── matrox_mmio.h
│ │ │ ├── matrox_regs.h
│ │ │ └── neomagic_mmio.h
│ │ ├── gamma.c
│ │ ├── leaks.h
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── newgal.c
│ │ ├── pixels.c
│ │ ├── pixels_c.h
│ │ ├── qvfb
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── qvfb.c
│ │ │ └── qvfb.h
│ │ ├── RLEaccel.c
│ │ ├── RLEaccel_c.h
│ │ ├── shadow
│ │ │ ├── ecos_generic.c
│ │ │ ├── linux_fbcon.c
│ │ │ ├── linux_qvfb.c
│ │ │ ├── Makefile
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── makefile.msvc
│ │ │ ├── makefile.ng
│ │ │ ├── nucleus_monaco.c
│ │ │ ├── shadow.c
│ │ │ ├── shadow.h
│ │ │ ├── threadx_anvil.c
│ │ │ ├── unknown.c
│ │ │ ├── win_fb.c
│ │ │ └── win_wvfb.c
│ │ ├── stretch.c
│ │ ├── stretch_c.h
│ │ ├── surface.c
│ │ ├── sysvideo.h
│ │ ├── video.c
│ │ ├── yuv.c
│ │ ├── yuvfuncs.h
│ │ ├── yuv_mmx.c
│ │ ├── yuv_sw.c
│ │ └── yuv_sw_c.h
│ ├── newgdi
│ │ ├── advapi.c
│ │ ├── arc.c
│ │ ├── attr.c
│ │ ├── bitmap.c
│ │ ├── clip.c
│ │ ├── coor.c
│ │ ├── drawtext.c
│ │ ├── drawtext.h
│ │ ├── flood.c
│ │ ├── gdi.c
│ │ ├── generators.c
│ │ ├── icon.c
│ │ ├── line.c
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── map.c
│ │ ├── miarc.c
│ │ ├── midash.c
│ │ ├── midc.h
│ │ ├── mifillarc.c
│ │ ├── mifillarc.h
│ │ ├── mifpolycon.c
│ │ ├── mifpoly.h
│ │ ├── mi.h
│ │ ├── mispans.c
│ │ ├── mispans.h
│ │ ├── mistruct.h
│ │ ├── miwideline.c
│ │ ├── miwideline.h
│ │ ├── palette.c
│ │ ├── pixel.c
│ │ ├── pixel_ops.c
│ │ ├── pixel_ops.h
│ │ ├── polygon.c
│ │ ├── polygon.h
│ │ ├── readbmp.c
│ │ ├── rect.c
│ │ ├── region.c
│ │ ├── rotatebmp.c
│ │ ├── screen.c
│ │ ├── text.c
│ │ └── yuv.c
│ ├── sysres
│ │ ├── bmps-3d.c
│ │ ├── bmps-flat.c
│ │ ├── bmps-phone.c
│ │ ├── button-3d-bmp.c
│ │ ├── button-flat-bmp.c
│ │ ├── button-phone-bmp.c
│ │ ├── checkmark-3d-bmp.c
│ │ ├── checkmark-flat-bmp.c
│ │ ├── cursors.c
│ │ ├── downarrow-3d-bmp.c
│ │ ├── downarrow-flat-bmp.c
│ │ ├── downarrow-phone-bmp.c
│ │ ├── filetype-icons.c
│ │ ├── filetype-icons-flat.c
│ │ ├── fold-ico.c
│ │ ├── fold-ico-flat.c
│ │ ├── icons-3d.c
│ │ ├── icons-flat.c
│ │ ├── leftrightarrow-3d-bmp.c
│ │ ├── leftrightarrow-flat-bmp.c
│ │ ├── leftrightarrow-phone-bmp.c
│ │ ├── lvfold-bmp.c
│ │ ├── lvunfold-bmp.c
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── mgetc-axlinux.c
│ │ ├── mgetc-bf533.c
│ │ ├── mgetc-bfin.c
│ │ ├── mgetc.c
│ │ ├── mgetc-custom.c
│ │ ├── mgetc-cygwin.c
│ │ ├── mgetc-dm270.c
│ │ ├── mgetc-ecos-default.c
│ │ ├── mgetc-ecos-ipaq-wifi.c
│ │ ├── mgetc-ecos-palm2.c
│ │ ├── mgetc-em85.c
│ │ ├── mgetc-em85xx.c
│ │ ├── mgetc-em86.c
│ │ ├── mgetc-embest2410.c
│ │ ├── mgetc-fft7202.c
│ │ ├── mgetc-figueroa.c
│ │ ├── mgetc-hh2410r3.c
│ │ ├── mgetc-hh2440.c
│ │ ├── mgetc-hh44b0.c
│ │ ├── mgetc-ipaq.c
│ │ ├── mgetc-mb93493.c
│ │ ├── mgetc-nucleus.c
│ │ ├── mgetc-nucleus-mnt.c
│ │ ├── mgetc-nucleus-monaco.c
│ │ ├── mgetc-ose-mx21.c
│ │ ├── mgetc-pc.c
│ │ ├── mgetc-psos-default.c
│ │ ├── mgetc-rm9200.c
│ │ ├── mgetc-swlinux.c
│ │ ├── mgetc-threadx.c
│ │ ├── mgetc-ucosii-arm3000.c
│ │ ├── mgetc-ucosii-skyeye.c
│ │ ├── mgetc-uptech.c
│ │ ├── mgetc-utpmc.c
│ │ ├── mgetc-vxi386.c
│ │ ├── mgetc-vxppc.c
│ │ ├── mgetc-vxsim.c
│ │ ├── mgetc-vxwifi.c
│ │ ├── mgetc-win32.c
│ │ ├── mgetc-xscale.c
│ │ ├── my_capbtns.c
│ │ ├── my_caption.c
│ │ ├── resource.c
│ │ ├── spinbox-3d-bmp.c
│ │ ├── spinbox-flat-bmp.c
│ │ ├── spinbox-phone-bmp.c
│ │ ├── syscfg.c
│ │ ├── trackbar-phone-bmp.c
│ │ ├── unfold-ico.c
│ │ ├── unfold-ico-flat.c
│ │ ├── updownarrow-3d-bmp.c
│ │ ├── updownarrow-flat-bmp.c
│ │ └── updownarrow-phone-bmp.c
│ ├── template.c
│ └── template.h
├── stamp-h1
├── TODO
├── vcongui
│ ├── child.c
│ ├── child.h
│ ├── defs.h
│ ├── error.c
│ ├── error.h
│ ├── foo.c
│ ├── key.c
│ ├── key.h
│ ├── Makefile
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── paint.c
│ ├── paint.h
│ ├── resource.h
│ ├── terminal.c
│ ├── terminal.h
│ ├── vc.c
│ ├── vc.h
│ ├── vcongui.c
│ ├── vt.c
│ └── vt.h
└── Version
35 directories, 726 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论