Search the web
Sign In
New User? Sign Up
palmnest · Support for palmoid.com software
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 42 - 71 of 768   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
42
Now YAHM merge m68k and arm native hack managers (former YAHM and YAHM/V) in one application. http://yahm.palmoid.com/yahm.prc...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 1, 2003
8:30 pm
43
http://yahm.palmoid.com/arm_dm_sample.zip - simplified sources of A5AgendaHack. Hack show FrmGotoForm interception and Data Manager calls in ARM API...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 1, 2003
8:59 pm
44
New DeadHack for PalmOS5 was added. Really new DeadHack.prc includes both motorola and arm hacks....
Igor Nesterov
nest_nest1
Offline Send Email
Oct 8, 2003
5:06 pm
45
Now all useful info for ARM hack development (header, libraries and syscall list) were compiled into SDK. Download at http://yahm.palmoid.com/yahm_dev.zip . ...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 13, 2003
4:10 pm
46
Hi, I think I found two missing functions in your .a files of YAHM SDK 2. I can't use InsPtEnabled and InsPtGetHeight. Can you add them to your libs, too? ...
noriknzw2003
Offline Send Email
Oct 18, 2003
4:38 pm
47
They are in libarmui.a. ... From: noriknzw2003 To: palmnest@yahoogroups.com Sent: Saturday, October 18, 2003 8:38 PM Subject: [palmnest] Missing functions Hi, ...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 18, 2003
4:58 pm
48
hi, Thanks for you very quick answer! Yes, you are right. It was my mistake! -- Nori...
noriknzw2003
Offline Send Email
Oct 18, 2003
6:15 pm
49
This is Nori again. When I trap SysHandleEvent and try to do something for fldEnterEvent, I can't use FldGetTextPtr with event->data.fldEnter.pField. It causes...
noriknzw2003
Offline Send Email
Oct 19, 2003
6:16 pm
50
I think that pFileds pointer is aligned to 16-bit boudary, not 32-bit as required for such pointers. Use ReadUnaligned32 macro. Also don't forget to use...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 19, 2003
6:47 pm
51
Hi, ... 32-bit as required for such pointers. Use ReadUnaligned32 macro. Also don't forget to use It seems that there are 2 byte padding between...
noriknzw2003
Offline Send Email
Oct 20, 2003
3:32 am
52
I try to build a hack on OS5 by YAHM/V. The hack hve to patch many function and I found the offset from SysTables.txt. but I cant'n find the offset of...
achongcharoen
Offline Send Email
Oct 20, 2003
7:22 am
53
Gsi* functions can be found in UITable [-12/0x300]... There are no Grf* functions now, all Graffiti stuff was moved to separate library (Graffiti 1/Graffiti...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 20, 2003
8:04 am
54
Try names like SysEventAddToQueue and similar. If you send me this mispellings, I can add them to libraries with both names. About padding: there are...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 20, 2003
8:04 am
55
Thank you very much. ... Grf* functions now, all Graffiti stuff was moved to separate library ... YAHM/V SDK ... the...
chartchuo
Offline Send Email
Oct 20, 2003
8:18 am
56
The current version of PRC-Tools for ARM will sometimes generate GOT-relative access (for example for static strings); this kind of code does not work with...
il_demone_guardiano
il_demone_gu...
Offline Send Email
Oct 26, 2003
2:10 pm
57
I have some ideas about got support. Something like adding ".got" resource to hack. When YAHM found this section, it copies 'armc' and '.got' together into new...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 26, 2003
2:58 pm
58
Hello all, I've added another hack to the "ready-to-use OS5 native hacks": the hack is a PalmWiki workalike. It will jump to a memo (or to an address book...
il_demone_guardiano
il_demone_gu...
Offline Send Email
Oct 26, 2003
7:00 pm
59
Great! First serious arm hack! Hello all, I've added another hack to the "ready-to-use OS5 native hacks": the hack is a PalmWiki workalike. It will jump to a...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 26, 2003
9:20 pm
60
http://yahm.palmoid.com/yahm_got.zip beta v2.0.37 with sample Notes: * .got and .text are extracted with arm-palmos-objcopy.exe * there are no...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 27, 2003
12:11 am
61
Hi, I'm trying to trap FntWidthToOffset, but I have the problem to access the last parameter. In my trapping function, when I set/get a value to/from...
noriknzw2003
Offline Send Email
Oct 27, 2003
2:48 am
62
This code works for me. Check data alignment, compiler options and assembly code. Show generated assembly code. === unsigned long NativeFuncType (const void...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 27, 2003
5:40 am
63
Hi, Thanks for your replying. Yes, it was an alignment problem. FntWidthToOffset is defined like this. FntWidthToOffset( const Char *, UInt16, Boolean *, Int16...
noriknzw2003
Offline Send Email
Oct 27, 2003
6:19 am
64
Strange. ARM procedure call use R0-R3 registers for first parameters and stack for 5th and following. So with standard prototype: FntWidthToOffset( /*R0*/const...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 27, 2003
6:29 am
65
... My compiler setting works with first prototype. x = FntWidthToOffset( "test string for me.", StrLen(...), &z, &y) return 4 in x and 11 in y. y was zero...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 27, 2003
7:58 am
66
... yes. the ARM processor can only execute code which is 32 bits aligned. ... The gcc 3.3.1 compiler is configured to produce pc relative code with a GOT...
il_demone_guardiano
il_demone_gu...
Offline Send Email
Oct 27, 2003
9:34 pm
67
It is easy to make a small patch for the prc-tools 2.3 tool build-prc that includes a ".got" resource with the same id as the corrisponding code resource. Now...
il_demone_guardiano
il_demone_gu...
Offline Send Email
Oct 27, 2003
11:35 pm
68
... binres.cpp was examined by me for the same goal. But I have problems with prc-tools building under cygwin. ... We can merge .text .disposn .data .bss and...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 28, 2003
6:32 am
69
... access ... It was my bug in little assembly routine. I'll post bugfix three hours later....
Igor Nesterov
nest_nest1
Offline Send Email
Oct 28, 2003
5:45 pm
70
http://yahm.palmoid.com/yahm_got.zip 2.0.37 * patch info was added for os5 * got support * handera scroll buttons fixed 2.0.56 * patching syscalls with more...
Igor Nesterov
nest_nest1
Offline Send Email
Oct 28, 2003
10:35 pm
71
... I do use MacOS X: prc-tools only needed some minor tweak. ... Due to the nature of hacks (in which everything must be absolutely fixed in memory), the code...
il_demone_guardiano
il_demone_gu...
Offline Send Email
Oct 28, 2003
10:36 pm
Messages 42 - 71 of 768   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help