re: debugging shared libraries

2008-11-07 Thread Tiago
Hi all! I´m trying to use one shared library created by me. I wrote my shared library and I compiled and the CW9 and it didn´t show errors. After this, I wrote my application using functions of the shared library and this didn´t show errors too. My problem is: when I use my application, the func

Pointers to functions in shared libraries

2008-05-29 Thread Stringer
ns back in the main program. Shared libraries use near function addresses (2 bytes), but a far address would be needed to call the functions in the main module. Consequently something like int (* foo) (CharPtr p) wouldn't work because the compiler (CW5) would view this as a near (2 byt

Pointers to functions in shared libraries

2008-05-29 Thread Stringer
gful, sorry! Roger Stringer Marietta Systems, Inc. -- >Subject: Re: Pointers to functions in shared libraries >From: [EMAIL PROTECTED] >Date: Tue, 27 Jun 2000 20:42:46 -0700 >> Consequently something like >>int (* foo) (CharPtr p

Re: Globals in shared libraries and virtual drivers.

2008-05-29 Thread Richard Hartman
Did you read the entire response, or stop after "you don't need ..."? What do you expect to get out of "real" globals that is not provided by the technique that Aaron suggested? -- -Richard M. Hartman [EMAIL PROTECTED] 186,000 mi/sec: not just a good idea, it's the LAW! Petrus Wrangö wrote in

Re: Sample code for shared libraries in Palm please!!

2008-05-29 Thread Dave Lippincott
How about the SampleLib project included with the SDK. It works with OS 3.0 and up. - Original Message - From: "Anne Srinivas" <[EMAIL PROTECTED]> Newsgroups: palm-dev-forum To: "Palm Developer Forum" Sent: Thursday, July 06, 2000 5:34 AM Subject: Sample co

Re: Sample code for shared libraries in Palm please!!

2008-05-29 Thread WldFyre
If you have access to the November 1999 edition of Dr. Dobb's Journal, there is lengthy article entitled "Extending the PalmOS: Encapsulating functionality with shared libraries". This may help... "Anne Srinivas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL

Shared Libraries at Runtime

2008-05-29 Thread George Henne
I'm an experienced programmer, but quite new to the Palm environment. The project I'm working on is NSBasic/Palm. My goal is to be able to open and use Shared Library routines. I have almost achieved my goal. I can Find a Shared Library. I can Open a Shared Library. I know which custom function

How can I call shared libraries at runtime?

2008-05-29 Thread George Henne
I'm an experienced programmer, but quite new to the Palm environment and CodeWarrior. My goal is to be able to open and use Shared Library routines. I have almost achieved my goal. I can Find a Shared Library. I can Open a Shared Library. I know which custom function number I want to call. I kn

RE: Multi segment shared libraries

2008-05-28 Thread Rick Gadbois
your app project. -Original Message- From: Petrus Wrangö [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 29, 2000 9:23 AM To: Palm Developer Forum Subject: Multi segment shared libraries I've searched the archive, and there are some questions related to this, but I can't figure

RE: Multi segment shared libraries

2008-05-28 Thread Rick Gadbois
but that's for multiple libsif that's what you wanted.. -Original Message- From: Rick Gadbois [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 29, 2000 9:29 AM To: Palm Developer Forum Subject: RE: Multi segment shared libraries As Eric stated before: Say your library p

RE: Multi segment shared libraries

2008-05-28 Thread Rick Gadbois
, you need to break it up somehow. -Original Message- From: Petrus Wrangö [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 29, 2000 9:33 AM To: Palm Developer Forum Subject: RE: Multi segment shared libraries hmm.. thanks, no, I need it to be ONE large shared library. BTW I estimate the si

RE: Multi segment shared libraries

2008-05-28 Thread Rick Gadbois
hared libraries I REALLY don't think I can break it apart, since all these lovely methods share global variables. And I read somewhere in the archive that shared libraries can not be larger than 64k. I'm open to suggestion! How can I access my 'shared' code in some

RE: Multi segment shared libraries

2008-05-28 Thread Rick Gadbois
You CAN share globals. That is... mutliple libraries can access these globals. Similar to you, I have a 120K library that various applications share. It is in ONE project file. It is not multi segment, as it outputs two lib files. The applications put the lib's into seperate segments. An

Debugging Shared Libraries

2008-05-28 Thread venkatesh
h the source of library. Can anybody provide some help on this regard. Does gdb supports debugging shared libraries? Thanks in advance venkatesh -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Sharing code as headers or shared libraries

2008-05-28 Thread Jim Duffy
ibing writing shred libraries, but is this what I'm looking for? its only a single function and I would prefer someone just include the header file and be done with it. On the other hand I do want to distribute it compiled so noone can alter the actual function. Can anyone pint me in

Re: Sharing code as headers or shared libraries

2008-05-28 Thread Gavin Maxwell
Take a look at the SampleLib example that ships with the SDK. If you want to ship a binary version of your code then this is probably the cleanest option. There are other ways to do what you're after but a shared library is prolly the best way to go. Good luck, Gavin. -- For information on

Sharing code as headers or shared libraries

2008-05-28 Thread Stringer
>Subject: Re: Sharing code as headers or shared libraries >From: Gavin Maxwell <[EMAIL PROTECTED]> >Date: Tue, 31 Oct 2000 15:35:41 +1100 >Take a look at the SampleLib example that ships with the SDK. >If you want to ship a binary version of your code then this is probably

Re: Sharing code as headers or shared libraries

2008-05-28 Thread Jim Duffy
Thanks for the guidance, I'm looking into shared libraries now, but can someone elaborate on a "static library" ?? thanks Jim Stringer <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > >Subject: Re: Sharing code as headers or shared libraries

Re: Sharing code as headers or shared libraries

2008-05-28 Thread Jim Duffy
0/31/00, Jim Duffy wrote: > >>I'm looking into shared libraries now, but can someone elaborate on a > >>"static library" ?? > > > > >Users of the library don't have to link any code into their > >projects: they just include a header, and w

Re: Globals in shared libraries and virtual drivers.

2008-05-28 Thread David Kendall
"Aaron Ardiri" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Official information states that 'real' globals canot be used in a shared > library. What I want to know is: Can I use globals in serial and virtual > drivers? > How? > > I'm also interested in using globals in shared li

Vtables in shared libraries?

2008-05-28 Thread David Kendall
I've finally cobbled together my C++ shared library, and I'm getting lots of the following error messages: 'MyClass::__vt' has illegal single segment 32-bit reference to 'MyClass::Func()'. *Please* tell me there's some compiler/linker setting I've got wrong, and that I *can* use virtuals in my sh

Multisection libraries

2008-02-14 Thread Ignazio Di Napoli
Hi everyone. I need to create a library which no longer fits in one section alone. How can I create a multisection one with PODS? The technique for applications did not work, since the linker do not find _GccRelocateData, I believe because of -nostartfile. Any idea? Thank you, Ignazio -- For in

Re: Glib shared libraries and debug problems

2007-08-25 Thread Andrew Woodgate
'stone age' methods - 10 years of staring at 68K code could turn anyone into a dinosaur, though that was 15 years ago. Thanks for the advice, I'll be using tracing methods as well, the OS Reporter app seems to work well. AW -- For information on using the ACCESS Developer Forums, or to unsubs

Re: Glib shared libraries and debug problems

2007-08-24 Thread Donald C. Kirker
Andrew Woodgate wrote: Ton, thanks for the reply. It looks like I'll just have to cope and rely on my rusty 68k assembler knowledge then. Andrew Sort of a "stone age" approach: You can also throw around some stuff to print to the screen or out the serial port (if the data isn't sent fast

Re: Glib shared libraries and debug problems

2007-08-24 Thread Andrew Woodgate
Ton, thanks for the reply. It looks like I'll just have to cope and rely on my rusty 68k assembler knowledge then. Andrew -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: Glib shared libraries and debug problems

2007-08-24 Thread Ton van Overbeek
On 2007-08-24, Andrew Woodgate <[EMAIL PROTECTED]> wrote: > Hi, > > I have inherited a Palm app that is written as 3 parts, 2 GLIB shared > library parts and the app itself and would like to debug this using the > Palm OS Debugger. > > In the files window, I add the 3 executables (.prc) and then ad

Glib shared libraries and debug problems

2007-08-24 Thread Andrew Woodgate
Hi, I have inherited a Palm app that is written as 3 parts, 2 GLIB shared library parts and the app itself and would like to debug this using the Palm OS Debugger. In the files window, I add the 3 executables (.prc) and then add the 3 'Symbolics' files, using the .o files generated by the link

Using standard C++ libraries

2007-04-12 Thread Christian Giordano
HI guys, I'm newbie palmos and slightly less on C++. I managed, thanks to a c++ framework (for desktop development), to create an application like the one I'd like to build for palmos. I'm realizing that it's definitely a non straight forward porting. In fact for my desktop app, I was using comfor

Re: pointers to functions in shared libraries

2006-12-02 Thread Don Albertson
Dmitry Grinberg said (on or about) 12/02/2006 16:03: oh, sorry, that was supposed to be "library FUNC pointers" I am *so* relieved. That other mental image was way too vivid. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/de

Re: pointers to functions in shared libraries

2006-12-02 Thread Dmitry Grinberg
oh, sorry, that was supposed to be "library FUNC pointers" On 12/2/06, Dmitry Grinberg <[EMAIL PROTECTED]> wrote: > > function calls to libraries are made using A-traps, just like system > calls, so you cannot get pointers to them, for the same reason you cannot > ge

Re: pointers to functions in shared libraries

2006-12-02 Thread Dmitry Grinberg
function calls to libraries are made using A-traps, just like system calls, so you cannot get pointers to them, for the same reason you cannot get a pointer to "SysAppLaunch" or "DmDatabaseInfo" in the standard way. That being said, I expect you can get into the library table

pointers to functions in shared libraries

2006-12-02 Thread P REEDER
Several of the palmOne shared libraries have a version function with the following signature: Err PalmPhotoLibGetVersion (UInt16 refNum, UInt32 sdkVersion, UInt32 *libVersionP) I have declared a table with some pointers to functions having that signature: typedef struct { UInt32 type

Re: Can libraries be put in a separate segments?

2006-08-22 Thread Ton van Overbeek
On 2006-08-22, JamesSturdevant <[EMAIL PROTECTED]> wrote: > > ... > > And since I'm asking, can someone explain what I'm not understanding in > this part of the map? I have defined a number of segments: main (all of > AppMain except PilotMain), list (DataList), tdoc(TextDoc), and strx > (

Re: Can libraries be put in a separate segments?

2006-08-22 Thread JamesSturdevant
Ton van Overbeek wrote: On 2006-08-21, JamesSturdevant <[EMAIL PROTECTED]> wrote: Now that I am able to get a memory map, I've identified one issue: libgcc.a loads into the initial segment, using about 28K and not leaving room for much else. Is there a way to specify that this library should

Re: Can libraries be put in a separate segments?

2006-08-21 Thread Ton van Overbeek
On 2006-08-21, JamesSturdevant <[EMAIL PROTECTED]> wrote: > Now that I am able to get a memory map, I've identified one issue: > > libgcc.a loads into the initial segment, using about 28K and not leaving > room for much else. Is there a way to specify that this library should > be loaded in its o

Can libraries be put in a separate segments?

2006-08-21 Thread JamesSturdevant
Now that I am able to get a memory map, I've identified one issue: libgcc.a loads into the initial segment, using about 28K and not leaving room for much else. Is there a way to specify that this library should be loaded in its own segment or is that only a compile time option? Thanks, JamesS

Re: System libraries and Card memory

2006-03-14 Thread Mike Durian
ncher would be able to locate > > them in "Handheld" memory, but not in "Card" memory. This applies > > both the the Aceeca Mez1000 device I am using and POSE. > > > > I'd like to use the Card memory for back-up purposes, but if the > > b

Re: System libraries and Card memory

2006-02-13 Thread David Thacker
h the the Aceeca Mez1000 device I am using and POSE. > > I'd like to use the Card memory for back-up purposes, but if the > battery goes on the PDA, then I'll only have use of the launcher's > Copy command to restore my system libraries - and apparently, it > will only

Re: System libraries and Card memory

2006-02-12 Thread Nikolai Filipov
Mike, you could try installing FileZ to the card and use that to copy the libraries back instead of the Launcher. Nikolai F. Hands High At 03:19 12.2.2006, you wrote: On Saturday 11 February 2006 16:26, Henk Jonas wrote: > Mike Durian wrote: > > Does anyone know why I can copy an m6

Re: System libraries and Card memory

2006-02-11 Thread Mike Durian
and POSE. I'd like to use the Card memory for back-up purposes, but if the battery goes on the PDA, then I'll only have use of the launcher's Copy command to restore my system libraries - and apparently, it will only copy the system libraries in one direction. mike -- For inform

Re: System libraries and Card memory

2006-02-11 Thread Henk Jonas
Mike Durian wrote: Does anyone know why I can copy an m68k system library from Handheld memory (we're talking a Palm OS 4.1.2 device here) to Card memory, but it is not listed under Card memory to be copied back. It seems strange that I can back something up, but not restore it. Do you talk

System libraries and Card memory

2006-02-09 Thread Mike Durian
Does anyone know why I can copy an m68k system library from Handheld memory (we're talking a Palm OS 4.1.2 device here) to Card memory, but it is not listed under Card memory to be copied back. It seems strange that I can back something up, but not restore it. My system library does use a non-sta

Re: Shared libraries

2006-01-09 Thread mluneau
Try this: http://linuxmafia.com/pub/palmos/development/shlib.txt -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Shared libraries

2005-10-05 Thread Luiz Antonio
Re: Shared libraries [EMAIL PROTECTED] wrote: >Hi people, > >Please, I would like to know where can I find an example of shared libraries. > >Regards, > >Luiz > > A few month ago Vesselin Bontchev found a tutorial : http://www.isaac.cs.berkeley.edu/pilot/shlib.html

Re: Shared libraries

2005-09-28 Thread Christian Lindemeier
[EMAIL PROTECTED] wrote: Hi people, Please, I would like to know where can I find an example of shared libraries. Regards, Luiz A few month ago Vesselin Bontchev found a tutorial : http://www.isaac.cs.berkeley.edu/pilot/shlib.html hope it helps. Christian Lindemeier -- For

Shared libraries

2005-09-28 Thread labarbos
Hi people, Please, I would like to know where can I find an example of shared libraries. Regards, Luiz -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Shared Libraries

2005-08-24 Thread Manu
here is no information whatsoever about multi-segmented Libraries. In fact, it won't even link as the multigen tools dumps a .S file which refers to functions that are in crt0.o. Being a Shared Library, I don't link with that file and thus, the functions needed to do the re-allocation are und

can't build shared libraries with more than 32k binary size using palm os developer suite

2005-08-08 Thread praveengeorgeus
Hi Every one out there, I am trying to build a shared library with Palm OS Developer Suite. My project is a Standard Make 68k C/C++ Project.In the Make file i specified MULTIPLE_CODE_SECTIONS=FALSE I have specified -nostartfiles in the linker. I get an error saying region coders are full.though t

shared libraries with multiple code segments using Palm OS Developer Suite

2005-08-08 Thread praveengeorgeus
Hi, I am trying to build a shared library with multiple code segments Using Palm OS Developer Suite.My project is a Standard Make 68k C/C++ Project.In the Make file i specified MULTIPLE_CODE_SECTIONS=TRUE I created a Sections.def with the following content. syslib { "FuncLib" MKHT } multiple cod

Re: Static data ok in Palm OS Shared Libraries

2005-07-17 Thread Benoit Cerrina
They are not allowed. as mentioned all static variables are forbidden. static functions (not static variables in a function) are ok. Benoit Paul Reger wrote: I believe that statics within the scope of a function are also not allowed. That is: void SomeFunction(int arg) { static int static

Re: Static data ok in Palm OS Shared Libraries

2005-07-15 Thread Paul Reger
I believe that statics within the scope of a function are also not allowed. That is: void SomeFunction(int arg) { static int staticVarWithinFunctionScope; staticVarWithinFunctionScope = arg; } When I execute the above code, when in a Palm OS Shared Library, it crashes my Tungsten T.

Re: Static data ok in Palm OS Shared Libraries

2005-07-15 Thread Neil Whitworth
Paul Reger wrote: I understand that we can not have Global Variables in a Palm OS Shared Library. Are file statics allowed? How about function statics? Static Variables are Globals, that the compiler limits access to, so can not be used in a shared library. Static Functions are fine. In C

Static data ok in Palm OS Shared Libraries

2005-07-14 Thread Paul Reger
I understand that we can not have Global Variables in a Palm OS Shared Library. Are file statics allowed? How about function statics? __ Switch to Netscape Internet Service. As low as $9.95 a month -- Sign up today at http://isp.n

Re: Do Palm OS Shared Libraries have resources?

2005-07-13 Thread Ben Combee
Shared libraries have resources, but the library has to DmOpenDatabase itself first to put it in the library search path as its not considered 'open' when in use. -Original Message- From: [EMAIL PROTECTED] (Paul Reger) Subj: Do Palm OS Shared Libraries have resources? Date

Do Palm OS Shared Libraries have resources?

2005-07-13 Thread Paul Reger
Sorry again if this is a stupid question, but I am clueless about something that I am seeing. On my PC, I examined a prc that is a palm os shared library using PRCExplorer, and I can see that it has 50K of data in the ARMC section. When I execute this code, I try to get at the resource using t

Re: Expanded Mode & Shared Libraries

2005-05-13 Thread Ben Combee
At 09:17 AM 5/13/2005, you wrote: According to Ben Combee's white paper on expanded mode, you can't activate expanded mode when building a shared library, but they were working on it for a future release (This was as of CW 8, I believe.) It doesn't appear to be in the current CW either, unless

Expanded Mode & Shared Libraries

2005-05-13 Thread rich
According to Ben Combee's white paper on expanded mode, you can't activate expanded mode when building a shared library, but they were working on it for a future release (This was as of CW 8, I believe.) It doesn't appear to be in the current CW either, unless I've missed something. Does anyon

Re: CodeWarrior 9.2 using the POL libraries

2005-04-06 Thread Alec Barker
I'll restart the project using the POL wizard. Thanks for your help Ben. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: CodeWarrior 9.2 using the POL libraries

2005-04-06 Thread Ben Combee
At 10:25 AM 4/6/2005, you wrote: Thanks for the reply Ben. Unfortunately, that did not solve the problem. I still see the same errors. I originally created my project using the Palm OS C++ Application wizard form Code Warrior 9.2. Can you recreate your project using the Object Library for Palm O

Re: CodeWarrior 9.2 using the POL libraries

2005-04-06 Thread Alec Barker
Thanks for the reply Ben. Unfortunately, that did not solve the problem. I still see the same errors. I originally created my project using the Palm OS C++ Application wizard form Code Warrior 9.2. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.

Re: CodeWarrior 9.2 using the POL libraries

2005-04-05 Thread Ben Combee
At 05:12 PM 4/5/2005, you wrote: I'm trying to build a CodeWarrior Palm Project that includes . When I try to build after inclding POL.h I get a bunch of new errors in the include files included by Pol.h. The first is: class CDateTime : public DateTimeType Error : illegal struct/union/enum/cla

Re: CodeWarrior 9.2 using the POL libraries

2005-04-05 Thread Adrien Regimbald
Hello Alec, You most likely have an error in your compiler settings. Have a look at the POL starter project to see what you need to change. Adrien. Tuesday, April 5, 2005, 4:12:30 PM, you wrote: AB> I'm trying to build a CodeWarrior Palm Project that includes AB> . When I try to build after inc

CodeWarrior 9.2 using the POL libraries

2005-04-05 Thread Alec Barker
I'm trying to build a CodeWarrior Palm Project that includes . When I try to build after inclding POL.h I get a bunch of new errors in the include files included by Pol.h. The first is: class CDateTime : public DateTimeType Error : illegal struct/union/enum/class definition (included from: PO

RE: Glib - shared libraries [long]

2004-11-17 Thread Andrew Comley
ginal Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Matthew Bevan Sent: 16 November 2004 21:28 To: Palm Developer Forum Subject: Re: Glib - shared libraries [long] Howdy, Andrew! > Many many thanks for that, you are being incredibly helpful! Thanks! Can you tell

RE: Glib - shared libraries [long] and now palmdev-prep

2004-11-17 Thread Andrew Comley
sing something again?? Much appreciated Andrew Comley -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Matthew Bevan Sent: 16 November 2004 22:49 To: Palm Developer Forum Subject: Re: Glib - shared libraries [long] and now palmdev-prep Howdy! > I have

Re: Glib - shared libraries [long] and now palmdev-prep

2004-11-16 Thread Matthew Bevan
y problems under Windows with the PRC-Tools which shipps with the new Palm development environment thingy. I'm not entirely sure which version of PRC-Tools GLib libraries were added to. Have a great day, Matthew Bevan -- Matthew Bevan, Margin Software - Re-inventing the wheel, every time.

RE: Glib - shared libraries [long] and now palmdev-prep

2004-11-16 Thread Andrew Comley
D] [mailto:[EMAIL PROTECTED] Behalf Of Matthew Bevan Sent: 16 November 2004 21:28 To: Palm Developer Forum Subject: Re: Glib - shared libraries [long] Howdy, Andrew! > Many many thanks for that, you are being incredibly helpful! Thanks! Can you tell customer service is my dayjob? ;-) >

Re: Glib - shared libraries [long]

2004-11-16 Thread Matthew Bevan
Howdy, Andrew! > Many many thanks for that, you are being incredibly helpful! Thanks! Can you tell customer service is my dayjob? ;-) > I will give this some real attention tomorrow (UK wind down time now) - > but one quick question - do I need any specific "glib" files to make this > all work?

RE: Glib - shared libraries [long]

2004-11-16 Thread Andrew Comley
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Matthew Bevan Sent: 16 November 2004 19:56 To: Palm Developer Forum Subject: Re: Glib - shared libraries [long] On November 16, 2004 11:11 am, Andrew Comley wrote: > Many thanks for the link, however can you spare the time to give the s

Re: Glib - shared libraries [long]

2004-11-16 Thread Matthew Bevan
led to produce the end GLib PRC. 3. Create Library.h which declares all exported functions. Global variables may not be shared between Library and Client, however. Use access functions. (You /can/ use globals within the library - unlike shared libraries.) 4. Create MyFontLib.def, listing with

RE: Glib - shared libraries

2004-11-16 Thread Andrew Comley
Behalf Of Matthew Bevan Sent: 16 November 2004 18:37 To: Palm Developer Forum Subject: Re: Glib - shared libraries Howdy, Andrew! On November 16, 2004 10:16 am, Andrew Comley wrote: > Can anyone tell me if Glib is still a good way to develop shared libraries? > > If so are there any si

Re: Glib - shared libraries

2004-11-16 Thread Matthew Bevan
Howdy, Andrew! On November 16, 2004 10:16 am, Andrew Comley wrote: > Can anyone tell me if Glib is still a good way to develop shared libraries? > > If so are there any simple (really simple) instructions on how to get it to > work! I don't know about you, but I learn well fro

Glib - shared libraries

2004-11-16 Thread Andrew Comley
Can anyone tell me if Glib is still a good way to develop shared libraries? If so are there any simple (really simple) instructions on how to get it to work! many thanks Andrew Comley -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com

Re: Exchange Libraries

2004-08-03 Thread Neil Whitworth
Ben Combee wrote: At 10:10 AM 8/3/2004, you wrote: I am trying to write an exchange library for our mMail e-mail application. I have created a shared libray with all the exchange manager functions, and set the type to be sysFileTExgLib ('exgl') I have mMail register the libraries

Re: Exchange Libraries

2004-08-03 Thread Ben Combee
At 10:10 AM 8/3/2004, you wrote: I am trying to write an exchange library for our mMail e-mail application. I have created a shared libray with all the exchange manager functions, and set the type to be sysFileTExgLib ('exgl') I have mMail register the libraries creator I

Exchange Libraries

2004-08-03 Thread Neil Whitworth
I am trying to write an exchange library for our mMail e-mail application. I have created a shared libray with all the exchange manager functions, and set the type to be sysFileTExgLib ('exgl') I have mMail register the libraries creator ID for Send ExgRegisterDatatype(mMailExch

RE: Shared Libraries - Urgent please help

2004-06-01 Thread Ben Combee
osing the libraries, but I don't know the magnitude of the slowness. Why don't you measure it yourself and find out? -- Ben Combee, DTS technical lead, PalmSource, Inc. Read "Combee on Palm OS" at http://palmos.combee.net/ -- For information on using the Palm Developer

Re: Shared Libraries - Urgent please help

2004-06-01 Thread LionScribe
In any case, I would suggest opening the libraries upon starting the application, and closing them upon stopping the application. Why keep opening and closing them? LionScribe "Ritu Chawla" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > Thanks a Lot fo

RE: Shared Libraries - Urgent please help

2004-06-01 Thread Ritu Chawla
EMAIL PROTECTED] Behalf Of Ben Combee Sent: Tuesday, June 01, 2004 9:57 AM To: Palm Developer Forum Subject: Re: Shared Libraries - Urgent please help At 10:39 PM 5/31/2004, you wrote: >Hi, > > >I have some queries about shared libraries > >a) Can i keep shared library open for lo

Re: Shared Libraries - Urgent please help

2004-05-31 Thread Ben Combee
At 10:39 PM 5/31/2004, you wrote: Hi, I have some queries about shared libraries a) Can i keep shared library open for long.or it can cause some issues.I have read that it may lead to memory curruption. There are no issues with keeping a shared library open in general. The only consequences

Shared Libraries - Urgent please help

2004-05-31 Thread Ritu Chawla
Hi, I have some queries about shared libraries a) Can i keep shared library open for long.or it can cause some issues.I have read that it may lead to memory curruption. b) Does openeing and closing of shared library again and again can cause performance oevrhead. If i create an application

Re: Static Libraries

2004-05-28 Thread Ben Combee
At 11:14 AM 5/28/2004, you wrote: I'm new to Palm OS programming and the Eclipse IDE for Palm OS Development. I'm having problems statically linking NetSocket.lib to my project. I've tried adding the library name to the automatically generated makefile, but I must not be adding it correctly. NetS

Static Libraries

2004-05-28 Thread Jones, Sarah R AA R11
I'm new to Palm OS programming and the Eclipse IDE for Palm OS Development. I'm having problems statically linking NetSocket.lib to my project. I've tried adding the library name to the automatically generated makefile, but I must not be adding it correctly. Thanks! Sarah Jones -- For info

Re: How to include Shared Libraries in makefile

2004-05-15 Thread jimrandomh
program it is not working. It seems i need include these shared libraries in makefile. Can anybody please help me how to inclue shared libraries in makefile. Any help would be really appreciated. Thank you very much Best Regards Padmini Paladugu When you do your link step, eg m68k-palmos-ld foo.c bar.c

How to include Shared Libraries in makefile

2004-05-14 Thread Padmini Paladugu
. It seems i need include these shared libraries in makefile. Can anybody please help me how to inclue shared libraries in makefile. Any help would be really appreciated. Thank you very much Best Regards Padmini Paladugu _ Stop worrying

Re: shared libraries for palm

2004-04-07 Thread Danielle Amorim
lm Knowledgebase and thumb through the Palm > Companion manual. > > - Original Message - > From: "Danielle Amorim" > <[EMAIL PROTECTED]> > To: "Palm Developer Forum" > <[EMAIL PROTECTED]> > Sent: Tuesday, April 06, 2004 5:36 PM >

Re: shared libraries for palm

2004-04-07 Thread Dave Lippincott
AIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Tuesday, April 06, 2004 5:36 PM Subject: shared libraries for palm > Help! > I created a library shared in CodeWarrior 9 and added > some functions. I created an application and includes > .h of m

shared libraries for palm

2004-04-06 Thread Danielle Amorim
Help! I created a library shared in CodeWarrior 9 and added some functions. I created an application and includes .h of my library. Questions: - How I make to open my library? - I use the OpenLibrary? - How functions the SysLibFind? It open shared libraries? - How I make to call my functions

Re: Fw: Where I can find Web Clipping Libraries?

2004-03-25 Thread Ben Combee
At 09:55 AM 3/25/2004, you wrote: Hi everybody, I am trying to use the Vagabonds web browser in my Zire71 but it says that it can't find the web clipping libraries. I took a long time trying to find at internet, but I couldn't. Web Clipping isn't supported in Palm OS 5 and later

Fw: Where I can find Web Clipping Libraries?

2004-03-25 Thread Davi Carvalho
Hi everybody, I am trying to use the Vagabonds web browser in my Zire71 but it says that it can't find the web clipping libraries. I took a long time trying to find at internet, but I couldn't. Anybody knows where I can find the Web Clipping Libraries so I can install in my palm to

Where can I find / put Treo 600 specific libraries?

2004-03-08 Thread Peter Spam
ue hello.o(.text+0x1c): In function `StartApplication': hello.c:18: undefined reference to `ImageLibGetVersion' collect2: ld returned 1 exit status make: *** [hello] Error 1 My guess is that I need the Treo600-specfic libraries (or at least some glue?). Where can I get those? 2) If I

Re: Do you have any handy functions/libraries you would like to donate?

2003-11-29 Thread Cyril MacDonald
I find the social commentary (which comprises a significant amount of postings) dilutes from this newsgroup's technical purpose. I joined a few days ago to find an answer to a question. Yet, I've only observed bickering about etiquette. cyril. __

Re: Do you have any handy functions/libraries you would like to donate?

2003-11-29 Thread Jason Oakley
"at once"? I sent the request over three weeks ago. If I didn't say anything, it would be forgotten (it already seemed to be ignored). I'm sure there's lots of plain generic code unless everyone writes a new "DrawBMP" function a different way each time they write an application. Don't you have

Re: Do you have any handy functions/libraries you would like to donate?

2003-11-29 Thread Luc Le Blanc
Jason Oakley a écrit : > So the answer seems to be "Don't ask us for our code. If you want examples > from us, either take it from our websites or from this forum (if you can > find it) cos we aren't going to email you any". No, the answer is: you may ask for code, but don't condemn people as ego

Re: Do you have any handy functions/libraries you would like to donate?

2003-11-29 Thread Jason Oakley
So the answer seems to be "Don't ask us for our code. If you want examples from us, either take it from our websites or from this forum (if you can find it) cos we aren't going to email you any". Fair enough. One would think it simpler to merely ask if someone would be kind to offer a function

Re: Do you have any handy functions/libraries you would like to donate?

2003-11-29 Thread Dave Lippincott
EMAIL PROTECTED]> Sent: Saturday, November 29, 2003 2:32 PM Subject: Re: Do you have any handy functions/libraries you would like to donate? > Jason Oakley a écrit : > > > It's interesting to see that Palm programmers prefer to protect their > > precious code and functions and

Re: Do you have any handy functions/libraries you would like to donate?

2003-11-29 Thread Luc Le Blanc
Jason Oakley a écrit : > It's interesting to see that Palm programmers prefer to protect their > precious code and functions and generally not share anything with anyone so > that every new Palm Programmer has to reinvent the wheel. This sounds like an unsubstantiated argument. It's not because y

Re: Do you have any handy functions/libraries you would like to donate?

2003-11-29 Thread Jason Oakley
First off, I'd like to say that I'm not asking everyone to give me all their code. I just requested that people might like to donate a few functions which I could post in my forum to help others out. I *could* go through the archive of this mailing list and just collect stuff, if that's the rec

Re: Do you have any handy functions/libraries you would like to donate?

2003-11-29 Thread Aaron Ardiri
> > It's interesting to see that Palm programmers prefer to protect their > > precious code and functions and generally not share anything with > > anyone so that every new Palm Programmer has to reinvent the wheel. > > > > We do get a couple of helpful ones (eg Razor) but in general, it's a >

RE: Do you have any handy functions/libraries you would like to donate?

2003-11-29 Thread kcorey
On Sat, 2003-11-29 at 09:05, Jason Oakley wrote: > It's interesting to see that Palm programmers prefer to protect their > precious code and functions and generally not share anything with anyone so > that every new Palm Programmer has to reinvent the wheel. > > We do get a couple of helpful one

  1   2   3   4   >