分享
 
 
 

Perl 5.6 for Windows CE

王朝perl·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

Perl 5.6 for Windows CE

作者:Perl CE 来源:rainer-keuchel.de

There are currently two programs for perl on wince: perl itself and a simple editor named PerlIDE. The programs run on nearly all wince platforms, even on WINCE200 and Palm Size PCs. There is also a build for CEPC/X86.

NewsThu May 22 2003: Vadim Konovalov has more recent Perl

binaries available, also with Perl memory allocator,

see links below.

Sat Oct 27 2001: Win32::API and Win32::OLE have been

ported. Win32::OLE works with ADOCE.

Sat Nov 03 2001: Added profile report for those curious

why loading standard mods is so slow.

Mon Jun 17 2002: News from Tsukamoto Makio

(tsukamoto@digit.que.ne.jp http://digit.que.ne.jp)

One, PerlCE worked on XScale.

I bought GENIOe550G which has processor based on XScale.

I installed console, fileutils, PerlCE and PerlIDE.

All of them worked on GENIOe550G.

Two, CPAN module "HTTP::Lite" worked on PerlCE.

I found HTTP::Lite module on CPAN, recent updates.

I tried it on PerlCE, it worked with proxy suppoting.

It'll help us with making HTTP client on PerlCE.

PerlThe binary archives do not contain any perl library files. You have to copy them from a regular perl distribution. There are only a few xs dlls in the archives.

PerlIDEPerlIDE is a simple editor for perl. You can start scripts from it and show the output. When the cursor is positioned on a line with an error and line-number, you can jump to that line.

Features/Limitations

Perl scripts not using pipes and external commands should run with no problems.

Simple terminal escape sequences for stand-out and cursor positioning.

Some XS dlls supported (IO/Socket/Dumper/NDBM/SDBM).

No fork().

No threads or PerlObject.

Simple pipes should work with programs that use celib.dll.

New mods Win32::API and Win32::OLE.

Installation

Get the archive for your device and unzip on your pc. Be sure to have smart crlf conversion turned off in WinZip. Copy the files to your device.

Get latest celib.dll and copy to your \windows directory.

Create registry entries using the registry editor from Microsoft's Powertoys for WinCE or using my cereg.exe. cereg.exe must run on your PC. An ActiveSync connection must be established. There are sample batch files in the archives.

Create a link to PerlIDE on your desktop.

Start PerlIDE and check the options dialog.

To start perl scripts by clicking on a .pl file, you have to create one or two keys in HKEY_CLASSES_ROOT, like on normal Win32.

You can copy other files from a standard perl dist to your device. Be sure to use files from the same perl version.

Do not overwrite the files that come with perl for wince.

Create directory dev in your UNIXROOTDIR (see below). This will be used for a pseudo /dev/null or nul.

For looking up service ports with getservbyname(), you need to have a services file in $UNIXROOTDIR/etc/services.

RegistryBelow is a sample batch file that you can execute on your PC with an ActiveSync connection established. cereg.exe can be found here.

set perlpath=\Storage Card\perl

set perlexe=%perlpath%\bin\perl.exe

set perllib=%perlpath%\usr\lib\perl5

::- PERL5LIB

cereg -k "HKLM\Environment" -n "PERL5LIB" -v "%perllib%"

::- For ShellExecute

cereg -k "HKCR\.pl" -n "" -v "perlfile"

cereg -k "HKCR\perlfile" -n "" -v "Perl Script"

cereg -k "HKCR\perlfile\DefaultIcon" -n "" -v "%perlexe%,-1"

cereg -k "HKCR\perlfile\Shell\open\command" -n "" -v """"%perlexe%""" ""%%1"""

::- Misc

REM Height of 10 is ok, 14 does almost full screen

cereg -k "HKLM\Environment" -n "ROWS" -v "14"

REM MAX Width for PPC is 29 Chars

cereg -k "HKLM\Environment" -n "COLS" -v "29"

cereg -k "HKLM\Environment" -n "PATH" -v "\Storage Card\bin;%perlpath%\bin"

cereg -k "HKLM\Environment" -n "UNIXROOTDIR" -v "\Storage Card"

Problems

To use the Autoloader, PERL5LIB must contain forward-slashes. I have not yet tracked this problem.

On Casio E100 there seems to be a socket.dll in ROM. You might have to rename the socket.dll that comes with perl and patch XSLoader.pm to load the renamed dll.

On WINCE200 devices, perl56.dll, celib.dll and cedialogs.dll must be copied to the windows directory. This is not needed with other os versions, but might be a good idea anyway.

On WINCE200 devices you need msvcrt.dll. It must be copied to your windows directory. msvcrt.dll can be found here.

Reading and writing to the same filehandle might not work. It should work on raw files. This will be fixed.

Textmode, like in DOS or Win32 is not supported. All files are opened in binary mode.

Perl code that checks if a filename is absolute by checking for drive names will not work.

perl -v might hang on some devices.

The console window closes when perl exits. When you want so see the output in the console window, you might have to display a short message and ask the user to hit return, then read from STDIN at the end of your program.

The console window might have scroll glitches when ROWS is not set or is too large.

The environment from the registry might not be visible in $ENV. This bug will be fixed in a new release.

cereg.exe is reported not to work with some WCE211/PalmSize devices.

PerformanceLoading all the standard modules to do reasonable work is kind of slow. I have hacked a simple profiler that uses the /Gh option and some assembly. Here is a profile report for Perl loading the stuff for Win32::Serial. I have no idea yet where to start optimizing things. It would best when standard modules could be pre-loaded and dumped into Perl like in Emacs.

Notes

All new programs using my console now have a --noconsole option. When set, the console window does not show up.

Be sure to use the newest celib.dll and don't overwrite it with older ones from other packages. New celib.dll builds should be backward-compatible.

When you need a pipe and only want to read output from another program, you can read it's standard output files from the root directory. This only works with programs using my celib.dll.

FuturePerl 5.7 is being tested. The Windows CE port will be part of the standard perl distribution.

下载:

File

Size

Date

Errno.pm

3983

Apr 03 2003

Net-FTP.zip

28198

Apr 04 2003

ange-ftp.tar.gz

86527

Oct 02 2001

apache-ce.html

1970

Oct 19 2002

apache1.jpg

35456

Jul 23 2001

apache2.jpg

47767

Jul 23 2001

apache3.jpg

48570

Jul 23 2001

arm-asm-wince-arm-hpc-wce300.tar.gz

161129

Apr 03 2002

arm-asm-wince-arm-pocket-wce300.tar.gz

147698

Apr 03 2002

armasm.html

934

Jan 09 2002

armasm1.jpg

28725

Jan 09 2002

armasm2.jpg

48579

Jan 09 2002

bibtex-all-platforms.tar.gz

800525

Jul 30 2002

bibtex-readme.txt

203

Jul 12 2002

caml-wince-arm-hpc-wce300.tar.gz

211176

Sep 13 2001

caml-wince-mips-hpc-wce211.tar.gz

206886

Oct 15 2002

caml-wince-sh3-hpc-wce211.tar.gz

206211

Sep 13 2001

caml.html

1075

Sep 19 2001

cediag.html

526

Sep 09 2001

cediag1.jpg

41881

Sep 09 2001

cedialogs-1.05-all-platforms.tar.gz

648210

Apr 17 10:55

celib-3.13-dll-bin-all-platforms.tar.gz

1364537

Apr 17 10:59

celib-funcs.html

5743

Aug 10 2001

celib.html

6131

May 10 2002

celib.txt

1890

Aug 10 2001

console-1.3-all-platforms.tar.gz

579081

Feb 25 2002

console.html

4680

Sep 09 2002

console1.jpg

33908

Sep 24 2001

debugger-mips-wce200.zip

274430

May 08 2003

debugger-wince-arm-hpc-wce300.tar.gz

12618

Apr 25 2002

debugger-wince-arm-pocket-wce300.tar.gz

12566

Apr 25 2002

debugger-wince-mips-hpc-wce211.tar.gz

12516

Apr 08 2003

debugger-wince-mips-pocket-wce300.tar.gz

12562

Apr 25 2002

debugger.html

906

Sep 09 2001

debugger.jpg

38091

May 25 2001

des-wince-arm-hpc-wce300.tar.gz

21664

Sep 04 2001

des-wince-mips-hpc-wce211.tar.gz

24852

Sep 04 2001

des-wince-sh3-hpc-wce211.tar.gz

22692

Sep 04 2001

devices.html

1996

Jan 12 2002

dirlist.html

51169

May 13 2003

dllexports

4096

Apr 17 2003

emacs-ce-faq.html

1116

Aug 07 2001

emacs-ce-readme.txt

1926

Aug 07 2001

emacs-hp548-1.jpg

12794

Aug 21 2001

emacs-hp548-2.jpg

23827

Aug 21 2001

emacs-ipaq-landscape.jpg

31803

Aug 18 2001

emacs-ipaq-portrait.jpg

19754

Aug 18 2001

emacs-palm-x86em.jpg

23055

Feb 08 2001

emacs-pencentra.jpg

85392

Jul 26 2002

emacs-ppc-em.jpg

13599

Aug 18 2001

emacs-ppc-linkfiles.tar.gz

204

Aug 21 2001

emacs-proc1.jpg

41669

Aug 27 2001

emacs-proc2.jpg

53331

Aug 27 2001

emacs-screenshots.html

364

Feb 08 2001

emacs-wince-all-platforms.tar.gz

548931

Aug 27 2001

emacs-wince-arm-hpc-wce211.tar.gz

1388670

Dec 21 2001

emacs-wince-arm-hpc-wce300.tar.gz

1396117

Aug 27 2001

emacs-wince-arm-xbuild-2.03.tar.gz

1318758

Mar 20 2002

emacs-wince-mips-hpc-wce200.tar.gz

1649781

Aug 27 2001

emacs-wince-mips-hpc-wce211.tar.gz

1467570

Aug 27 2001

emacs-wince-mips-xbuild-2.03.tar.gz

1383370

Mar 20 2002

emacs-wince-sh3-hpc-wce211.tar.gz

1442473

Aug 27 2001

emacs-wince-sh3-xbuild-2.03.tar.gz

1369631

Mar 20 2002

emacs-wince-xbuild-2.01.tar.gz

1324

Mar 20 2002

emacs-wince-xbuild-2.02.tar.gz

683

Mar 20 2002

emacs-wince-xbuild-2.03.tar.gz

318

Mar 20 2002

emacs-wince.html

12827

Jul 26 2002

emacs1.jpg

48818

Feb 02 2001

emacs2.jpg

55341

Feb 02 2001

emacs3.jpg

49430

Feb 02 2001

emacs4.jpg

47236

Feb 02 2001

emacs5.jpg

45820

Feb 02 2001

env.txt

1051

Sep 10 2001

fileutils-wince-arm-hpc-wce211.tar.gz

147684

May 29 2002

fileutils-wince-arm-hpc-wce300.tar.gz

148081

May 29 2002

fileutils-wince-arm-pocket-wce300.tar.gz

147957

May 29 2002

fileutils-wince-mips-hpc-wce211.tar.gz

189986

May 29 2002

fileutils-wince-mips-palm-wce211.tar.gz

189971

May 29 2002

fileutils-wince-mips-pocket-wce300.tar.gz

189173

May 29 2002

fileutils-wince-sh3-hpc-wce211.tar.gz

101604

May 29 2002

fileutils-wince-sh3-pocket-wce300.tar.gz

95224

May 29 2002

fileutils-wince-x86-hpc-wce300.tar.gz

89461

May 29 2002

fileutils-wince-x86em-palm-wce211.tar.gz

116150

May 29 2002

fileutils-wince-x86em-pocket-wce300.tar.gz

106643

May 29 2002

find-wince-arm-hpc-wce300.tar.gz

40812

Aug 27 2001

find-wince-arm-pocket-wce300.tar.gz

40794

Aug 27 2001

find-wince-mips-hpc-wce211.tar.gz

50190

Aug 27 2001

find-wince-mips-palm-wce211.tar.gz

50193

Aug 27 2001

find-wince-mips-pocket-wce300.tar.gz

50246

Aug 27 2001

find-wince-sh3-hpc-wce211.tar.gz

42789

Aug 27 2001

find-wince-sh3-pocket-wce300.tar.gz

42153

Aug 27 2001

find-wince-x86em-palm-wce211.tar.gz

33117

Aug 27 2001

find-wince-x86em-pocket-wce300.tar.gz

33161

Aug 27 2001

flite.html

1042

Dec 10 2001

ftp-win32-x86.tar.gz

165530

Jan 16 2002

ftp-wince-arm-hpc-wce300.tar.gz

131333

Aug 27 2001

ftp-wince-arm-pocket-wce300.tar.gz

131053

Aug 27 2001

ftp-wince-mips-hpc-wce211.tar.gz

141598

Aug 27 2001

ftp-wince-mips-palm-wce211.tar.gz

141573

Aug 27 2001

ftp-wince-mips-pocket-wce300.tar.gz

143173

Aug 27 2001

ftp-wince-sh3-hpc-wce211.tar.gz

130366

Aug 27 2001

ftp-wince-sh3-pocket-wce300.tar.gz

132996

Aug 27 2001

ftpd-2.02-all-platforms.tar.gz

319866

Aug 14 2002

ftpd-ce.html

1485

Aug 14 2002

ftpd1.jpg

26936

Sep 01 2001

gcl-ce.html

4336

May 08 2002

gcl-maxima-arm-hpc-wce300.tar.gz

5076678

Sep 24 2002

gcl-maxima-mips-hpc-wce211.tar.gz

6759149

Sep 24 2002

gcl-maxima-sh3-hpc-wce211.tar.gz

3011301

Sep 24 2002

gcl-maxima.txt

136

Sep 24 2002

gcl1.jpg

39401

Aug 18 2001

gcl2.jpg

42182

Aug 18 2001

gnuplot-ce.html

1185

Sep 01 2001

gnuplot-ipaq1.jpg

25227

Sep 01 2001

gnuplot-wince-arm-hpc-wce300.tar.gz

518017

Sep 01 2001

gnuplot-wince-mips-hpc-wce211.tar.gz

476270

Sep 02 2001

gnuplot-wince-sh3-hpc-wce211.tar.gz

516850

Sep 02 2001

gnuplot1.jpg

34854

Sep 01 2001

gnuplot2.jpg

33145

Sep 01 2001

gpari-wince-arm-hpc-wce300.tar.gz

875259

Oct 03 2001

gpari-wince-mips-hpc-wce211.tar.gz

975776

Oct 03 2001

gpari-wince-sh3-hpc-wce211.tar.gz

932830

Oct 03 2001

gpari.html

1473

Oct 15 2001

gphoto-arm-hpc-wce211.tar.gz

181138

Aug 24 2002

gphoto-arm-hpc-wce300.tar.gz

208728

Sep 11 2001

gphoto-mips-hpc-wce211.tar.gz

188558

Sep 11 2001

gphoto-sh3-hpc-wce211.tar.gz

188932

Sep 11 2001

gphoto.html

1095

Sep 11 2001

grep-wince-arm-hpc-wce300.tar.gz

78672

Aug 27 2001

grep-wince-arm-pocket-wce300.tar.gz

78502

Aug 27 2001

grep-wince-mips-hpc-wce211.tar.gz

87402

Aug 27 2001

grep-wince-mips-palm-wce211.tar.gz

87412

Aug 27 2001

grep-wince-mips-pocket-wce300.tar.gz

89031

Aug 27 2001

grep-wince-sh3-hpc-wce211.tar.gz

76371

Aug 27 2001

grep-wince-sh3-pocket-wce300.tar.gz

78712

Aug 27 2001

gzip-1.2-all-platforms.tar.gz

746354

Jan 08 2002

hatman-ipaq.jpg

27766

Apr 28 2002

hatman-wince-arm-hpc-wce300.tar.gz

277416

Apr 29 2002

hatman-wince-mips-hpc-wce211.tar.gz

291052

Apr 29 2002

hatman-wince-sh3-hpc-wce211.tar.gz

284978

Apr 29 2002

hatman.html

698

Apr 29 2002

hatman1.jpg

22792

Apr 16 2001

hatman2.jpg

45107

Apr 16 2001

inetd-all-platforms.tar.gz

65137

Jul 30 2002

ispell-ce.html

950

Sep 01 2001

ispell-wince-arm-hpc-wce300.tar.gz

39764

Sep 04 2001

ispell-wince-mips-hpc-wce211.tar.gz

42725

Sep 04 2001

ispell-wince-sh3-hpc-wce211.tar.gz

38534

Sep 04 2001

ispell1.jpg

51635

Sep 01 2001

ispell31-win32.zip

353483

Mar 30 2003

jka-compr.tar.gz

12826

Oct 27 2001

jornada720.reg.gz

576

Dec 08 2001

kaffe.html

1551

Mar 13 2003

kaffe1.jpg

33147

Apr 25 2002

kaffe2.jpg

14430

Apr 25 2002

madfront.html

1686

Oct 19 2002

madfront1.jpg

58160

Mar 12 2001

makeindex-all-platforms.tar.gz

415869

Jul 12 2002

max1.jpg

32960

Sep 05 2001

maxima-ce.html

4823

Oct 05 2001

maxima-ipaq1.jpg

22764

Aug 29 2001

maxima1.jpg

43212

Aug 26 2001

maxima2.jpg

36342

Aug 26 2001

maxima3.jpg

31538

Aug 26 2001

maxx-ipaq1.jpg

14712

Sep 02 2001

maxx-ipaq2.jpg

13119

Sep 02 2001

maxx-wince-arm-hpc-wce300.tar.gz

27743

Nov 30 2001

maxx-wince-arm-pocket-wce300.tar.gz

27826

Nov 30 2001

maxx-wince-mips-hpc-wce211.tar.gz

28988

Nov 30 2001

maxx-wince-mips-pocket-wce300.tar.gz

29124

Nov 30 2001

maxx-wince-sh3-hpc-wce211.tar.gz

29972

Nov 30 2001

maxx-wince-sh3-pocket-wce300.tar.gz

29967

Nov 30 2001

maxx.html

1614

Oct 11 2001

maxx1.jpg

33647

Sep 02 2001

mpeg_play-arm-hpc.tar.gz

142712

Apr 06 2001

mpegplay-wince-hpc-2000-arm.tar.gz

250511

Jun 10 2001

mpegplay-wince-hpc-wce211-sh3.tar.gz

90634

May 25 2001

mpegplay-wince-hpc-wce300-arm.tar.gz

203461

Sep 10 2001

mpegplay.html

968

Jul 22 2002

mpegplay.txt

1163

Jun 10 2001

mpegplay1.jpg

23990

Jun 10 2001

mpegplay2.jpg

15053

Jul 22 2002

msvcrt-dll-wce200-mips-hpc.tar.gz

62358

May 10 2001

msvcrt-dll-wce200-sh3-hpc.tar.gz

54298

Jul 07 2001

nqc-2.5-arm-ppc.tar.gz

115076

May 13 2003

pari1.jpg

47760

Oct 03 2001

patch-all-platforms.tar.gz

377060

Mar 16 2002

perl-ce-faq.html

1823

Aug 07 2001

perl-ce-readme.txt

1185

Aug 07 2001

perl-compress-zlib.tar.gz

144518

Jun 30 2002

perl-debugger.jpg

43247

Aug 10 2001

perl-profile.txt

48786

Nov 03 2001

perl-win32-api.tar.gz

27508

Oct 29 2001

perl-win32-commport.tar.gz

48878

Oct 29 2001

perl-win32-ole.tar.gz

219486

Oct 29 2001

perl-wince-arm-hpc-wce211.tar.gz

525831

Oct 29 2001

perl-wince-arm-hpc-wce300.tar.gz

535948

Oct 29 2001

perl-wince-arm-pocket-wce300.tar.gz

525712

Oct 29 2001

perl-wince-mips-hpc-wce200.tar.gz

693171

Feb 14 2003

perl-wince-mips-hpc-wce211.tar.gz

669001

Oct 29 2001

perl-wince-mips-palm-wce211.tar.gz

669050

Oct 29 2001

perl-wince-mips-pocket-wce300.tar.gz

667782

Apr 25 2002

perl-wince-sh3-hpc-wce200.tar.gz

552496

Feb 14 2003

perl-wince-sh3-hpc-wce211.tar.gz

539366

Oct 29 2001

perl-wince-sh3-palm-wce211.tar.gz

539392

Oct 29 2001

perl-wince-sh3-pocket-wce300.tar.gz

538291

Oct 29 2001

perl-wince-sh4-hpc-wce211.tar.gz

591896

Mar 14 2003

perl-wince-x86-hpc-wce300.tar.gz

425635

Oct 29 2001

perl-wince-x86em-palm-wce211.tar.gz

462069

Oct 29 2001

perl-wince-x86em-pocket-wce300.tar.gz

462381

Oct 29 2001

perlce-in-emulator.doc

258048

Apr 06 2001

perlce.html

7541

Jul 08 2003

perlce1.jpg

22664

Aug 07 2001

perlce2.jpg

20243

Aug 07 2001

perlide-wince-arm-hpc-wce211.tar.gz

26025

Aug 10 2001

perlide-wince-arm-hpc-wce300.tar.gz

25591

Aug 10 2001

perlide-wince-arm-pocket-wce300.tar.gz

25943

Aug 10 2001

perlide-wince-mips-hpc-wce200.tar.gz

61582

Aug 10 2001

perlide-wince-mips-hpc-wce211.tar.gz

26492

Aug 10 2001

perlide-wince-mips-palm-wce211.tar.gz

26463

Aug 10 2001

perlide-wince-mips-pocket-wce300.tar.gz

26765

Aug 10 2001

perlide-wince-sh3-hpc-wce200.tar.gz

57199

Aug 10 2001

perlide-wince-sh3-hpc-wce211.tar.gz

27337

Aug 10 2001

perlide-wince-sh3-palm-wce211.tar.gz

27164

Aug 10 2001

perlide-wince-sh3-pocket-wce300.tar.gz

27526

Aug 10 2001

perlide-wince-sh4-hpc-wce211.tar.gz

50770

Mar 21 2003

perlide-wince-x86em-palm-wce211.tar.gz

23470

Aug 10 2001

perlide-wince-x86em-pocket-wce300.tar.gz

23464

Aug 10 2001

perltk-wince-hpc-arm.tar.gz

2651562

Apr 16 2001

perltk.html

495

Aug 28 2001

perltk1.jpg

41274

Apr 16 2001

plot-init.lisp

42791

Sep 07 2001

pocket-pc.txt

733

Aug 10 2001

profiler.html

1805

Apr 26 2002

rcp-wince-arm-hpc-wce300.tar.gz

32137

Aug 26 2001

rcp-wince-arm-pocket-wce300.tar.gz

31952

Aug 26 2001

rcp-wince-mips-hpc-wce211.tar.gz

30819

Aug 26 2001

rcp-wince-mips-palm-wce211.tar.gz

30826

Aug 26 2001

rcp-wince-mips-pocket-wce300.tar.gz

32551

Aug 26 2001

rcp-wince-sh3-hpc-wce211.tar.gz

29825

Aug 26 2001

rcp-wince-sh3-pocket-wce300.tar.gz

31928

Aug 26 2001

rcp-wince-x86em-palm-wce211.tar.gz

29300

Aug 26 2001

rcp-wince-x86em-pocket-wce300.tar.gz

36594

Aug 26 2001

rcxtools-wince-hpc-arm-wce300.tar.gz

205761

Sep 25 2001

rcxtools-wince-hpc-mips-wce200.tar.gz

340837

Sep 25 2001

rcxtools-wince-hpc-mips-wce211.tar.gz

213129

Sep 25 2001

rcxtools-wince-hpc-sh3-wce200.tar.gz

321020

Sep 25 2001

rcxtools-wince-hpc-sh3-wce211.tar.gz

208841

Sep 25 2001

rcxtools-wince-palm-mips-wce201.tar.gz

271288

Feb 17 2002

rcxtools-wince-palm-mips-wce211.tar.gz

155043

Sep 25 2001

rcxtools-wince-ppc-arm-wce300.tar.gz

205744

Sep 25 2001

rcxtools-wince-ppc-mips-wce300.tar.gz

214783

Sep 25 2001

rcxtools-wince-ppc-sh3-wce300.tar.gz

210619

Sep 25 2001

registry.html

3629

May 10 2002

rsh-wince-arm-hpc-wce300.tar.gz

25370

Aug 26 2001

rsh-wince-arm-pocket-wce300.tar.gz

25238

Aug 26 2001

rsh-wince-mips-hpc-wce211.tar.gz

23802

Aug 26 2001

rsh-wince-mips-palm-wce211.tar.gz

23795

Aug 26 2001

rsh-wince-mips-pocket-wce300.tar.gz

25759

Aug 26 2001

rsh-wince-sh3-hpc-wce211.tar.gz

23191

Aug 26 2001

rsh-wince-sh3-pocket-wce300.tar.gz

25503

Aug 26 2001

rsh-wince-x86em-palm-wce211.tar.gz

23020

Aug 26 2001

rsh-wince-x86em-pocket-wce300.tar.gz

30342

Aug 26 2001

rsync-all-platforms.tar.gz

577732

Aug 24 2002

rsync.html

1199

May 02 2002

scm-all-platforms.tar.gz

694110

Sep 05 2001

scm-arm-hpc-wce300.tar.gz

151200

Sep 05 2001

scm-ce.html

1228

Sep 05 2001

scm-mips-hpc-wce211.tar.gz

175275

Sep 05 2001

scm-sh3-hpc-wce211.tar.gz

158084

Sep 05 2001

scm1.jpg

51695

Sep 01 2001

sed-wince-arm-hpc-wce300.tar.gz

51955

Aug 20 2001

sed-wince-arm-pocket-wce300.tar.gz

51705

Aug 20 2001

sed-wince-mips-hpc-wce211.tar.gz

55242

Aug 20 2001

sed-wince-mips-palm-wce211.tar.gz

55240

Aug 20 2001

sed-wince-mips-pocket-wce300.tar.gz

55028

Aug 20 2001

sed-wince-sh3-hpc-wce211.tar.gz

51992

Aug 20 2001

sed-wince-sh3-pocket-wce300.tar.gz

51231

Aug 20 2001

sed-wince-x86em-palm-wce211.tar.gz

42620

Aug 20 2001

sed-wince-x86em-pocket-wce300.tar.gz

42749

Aug 20 2001

showpic-all-platforms.tar.gz

314536

Sep 09 2001

showpic-mips-palm-wce211.tar.gz

65375

Nov 14 2002

showpic-wince-arm-hpc-wce211.tar.gz

69210

Aug 24 2002

showpic.html

1575

Sep 10 2001

showpic1.jpg

29897

Sep 09 2001

showpic2.jpg

29644

Sep 09 2001

skull.txt

1278

Aug 14 2001

ssh-wince-arm-hpc-wce211.tar.gz

980649

Feb 25 2002

ssh-wince-arm-hpc-wce300.tar.gz

979193

Feb 25 2002

ssh-wince-mips-hpc-wce211.tar.gz

1138473

Apr 13 2002

ssh-wince-sh3-hpc-wce211.tar.gz

917529

Feb 25 2002

ssh-wince-sh4-hpc-wce211.tar.gz

989057

Apr 23 2002

ssh.html

1957

Apr 02 2003

ssh1.jpg

48361

Sep 24 2001

ssh2.jpg

58698

Sep 24 2001

ssl-1.0-all-platforms.tar.gz

1702895

Sep 24 2001

stunnel-wince-arm-hpc-wce211.tar.gz

331170

Jul 10 2002

stunnel-wince-arm-hpc-wce300.tar.gz

329904

Jul 10 2002

stunnel-wince-mips-hpc-wce211.tar.gz

375457

Jul 10 2002

stunnel-wince-sh3-hpc-wce211.tar.gz

305173

Jul 10 2002

stunnel.html

693

Sep 07 2002

swi-prolog.html

1739

May 04 2002

swi-prolog.jpg

30523

May 04 2002

swi-prolog.tar.gz

1252815

May 04 2002

tar-wince-arm-hpc-wce300.tar.gz

85830

Aug 20 2001

tar-wince-arm-pocket-wce300.tar.gz

85124

Aug 20 2001

tar-wince-mips-hpc-wce211.tar.gz

84341

Aug 20 2001

tar-wince-mips-palm-wce211.tar.gz

84338

Aug 20 2001

tar-wince-mips-pocket-wce300.tar.gz

86133

Aug 20 2001

tar-wince-sh3-hpc-wce211.tar.gz

82928

Aug 20 2001

tar-wince-sh3-pocket-wce300.tar.gz

85248

Aug 20 2001

tar-wince-x86em-palm-wce211.tar.gz

74000

Aug 20 2001

tar-wince-x86em-pocket-wce300.tar.gz

81563

Aug 20 2001

tcltk-all-platforms.tar.gz

543562

Mar 19 2002

tcltk-ce.html

2166

Feb 01 2002

tcltk-wince-arm-hpc-wce300.tar.gz

799618

Mar 19 2002

tcltk-wince-mips-hpc-wce211.tar.gz

981366

Mar 19 2002

tcltk-wince-mips-palm-wce201.tar.gz

1076972

Mar 19 2002

tcltk-wince-mips-pocket-wce300.tar.gz

974441

Mar 21 2003

tcltk-wince-sh3-hpc-wce211.tar.gz

799218

Mar 19 2002

tcltk-wince-sh3-pocket-wce300.tar.gz

790961

Mar 19 2002

tcltk1.jpg

34312

Aug 20 2001

telnet-1.3-all-platforms.tar.gz

571223

Apr 24 2002

telnet.html

1150

Feb 12 2002

telnet1.jpg

42145

Sep 24 2001

telnet2.jpg

40986

Sep 24 2001

template.html

447

Sep 11 2001

tex0.jpg

37899

Aug 05 2001

tex1.jpg

48710

Aug 05 2001

tex2.jpg

43250

Aug 05 2001

tex3.jpg

28290

Aug 05 2001

texce.html

4152

Jul 12 2002

texed-all-platforms.tar.gz

170585

Apr 17 10:59

texed-macros1.jpg

29987

Sep 10 2001

texmf-arm-hpc-wce211.tar.gz

559165

Apr 02 2002

texmf-arm-hpc-wce300.tar.gz

607542

Mar 14 2002

texmf-arm-pocket-wce300.tar.gz

551352

Mar 14 2002

texmf-common.tar.gz

831516

Mar 14 2002

texmf-mips-hpc-wce211.tar.gz

581163

Mar 14 2002

texmf-mips-pocket-wce300.tar.gz

576529

Mar 14 2002

texmf-sh3-hpc-wce211.tar.gz

550042

Mar 14 2002

texmf-sh3-pocket-wce300.tar.gz

540207

Mar 14 2002

texmf-sh4-hpc-wce211.tar.gz

550995

Mar 14 2002

texmf-texed-hp548-1.jpg

18228

Aug 21 2001

texmf-windvi-emul-1.jpg

23232

Aug 05 2001

texmf-windvi-hp548-1.jpg

15646

Aug 21 2001

textutils-wince-arm-hpc-wce300.tar.gz

858637

Aug 17 2001

textutils-wince-arm-pocket-wce300.tar.gz

841737

Aug 17 2001

textutils-wince-mips-hpc-wce211.tar.gz

762361

Aug 17 2001

textutils-wince-mips-palm-wce211.tar.gz

761551

Aug 17 2001

textutils-wince-mips-pocket-wce300.tar.gz

885127

Aug 17 2001

textutils-wince-sh3-hpc-wce211.tar.gz

735324

Aug 17 2001

textutils-wince-sh3-pocket-wce300.tar.gz

857551

Aug 17 2001

textutils-wince-x86em-palm-wce211.tar.gz

672767

Aug 17 2001

textutils-wince-x86em-pocket-wce300.tar.gz

811825

Aug 17 2001

todo.html

997

May 02 2002

toolhelp-dll-wce211-arm-hpc.tar.gz

1631

Jul 07 2001

toolhelp-dll-wce211-mips-hpc.tar.gz

2044

Jul 07 2001

toolhelp-dll-wce211-sh3-hpc.tar.gz

1691

Jul 07 2001

vim-is-on-wince-devel.html

332

May 08 2002

vim.html

2022

May 10 2002

vim1.jpg

29920

Apr 27 2002

vim2.jpg

19708

Apr 27 2002

wce.txt

3554

Jan 12 2002

wce200.txt

2375

Jan 12 2002

wce211.txt

353

Aug 28 2001

wce300.txt

353

Aug 28 2001

wget-wince-arm-hpc-wce300.tar.gz

105525

Aug 17 2001

wget-wince-arm-pocket-wce300.tar.gz

104873

Aug 17 2001

wget-wince-mips-hpc-wce211.tar.gz

107434

Aug 17 2001

wget-wince-mips-palm-wce211.tar.gz

107420

Aug 17 2001

wget-wince-mips-pocket-wce300.tar.gz

110010

Aug 17 2001

wget-wince-sh3-hpc-wce211.tar.gz

102688

Aug 17 2001

wget-wince-sh3-pocket-wce300.tar.gz

105433

Aug 17 2001

wince-api-211-200-diffs.txt

1053

May 26 2001

wince-api-bugs.txt

770

May 26 2001

wince-api-diffs.txt

7820

May 26 2001

wince-api-undoc.txt

1312

May 04 2001

wince-desktop-tools.tar.gz

81443

Jan 30 2001

wince-help-request.txt

801

Aug 24 2001

windvi-update-all-platforms.tar.gz

963950

Sep 10 2001

x11-wince-001.jpg

41515

May 15 2001

x11-wince-002.jpg

71633

May 15 2001

x11-wince-003.jpg

38704

May 15 2001

xfree-ipaq1.jpg

39833

Jul 22 2002

xfree-wince.html

4286

Jul 22 2002

xfree-wince.txt

2448

May 15 2001

xmax1.jpg

38033

Sep 08 2001

xmax2.jpg

41624

Sep 08 2001

xmaxima-wince-all-platforms.tar.gz

255858

Sep 24 2002

xndbm.pl

280

Aug 10 2001

xplotinit.txt

42791

Sep 07 2001

xserver-wince-1.jpg

58227

May 02 2001

xsh-wince-arm-hpc-wce300.tar.gz

21852

Aug 27 2001

xsh-wince-mips-hpc-wce211.tar.gz

20421

Aug 27 2001

xsh-wince-sh3-hpc-wce211.tar.gz

20033

Aug 27 2001

Totalfiles: 396 Total MB: 92.401 Max MB: 100.000

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有