Linker Error: atoi FIXED Thanks!!

2008-05-29 Thread Samuel Tu
Thanks you guys!! The problem is fix!! Sam Samuel Tu Software Engineer Numoda Corporation The Curtis Center 601 Walnut Street, 9th Floor Philadelphia, PA 19106 Tel: 215.238.8881 Fax : 215.238.9995 Email: [EMAIL PROTECTED]

Re: Linker Error: atoi referenced from QuestionForm() is undefined? P lease help

2008-05-29 Thread Dave Lippincott
Won't work. You can only use the functions in the Palm OS API. Try StrAtoI (note the caps) -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Linker Error: atoi referenced from QuestionForm() is undefined? P lease help

2008-05-29 Thread Samuel Tu
Hi Every one, I have a newbe question, I would like to use the C/C++ std function convert a string to integer. So I include the stdlib.h and use the atoi function inside a QuestionForm function as follow int test = atoi(server) However, when I compile the program, if give me Linker Error: atoi

Linker error

2008-05-28 Thread Hema Shah
Hi, I am developing application for Palm OS using C. I am using strcmp function in my program. I am not able to find library name to include for this function, so I am getting linker error. Can any one tell me which file do I need to include to solve linker problem? Thanks in advance, Hema

code warrior linker error

2008-05-28 Thread Mark Smith
I'm getting the error MacOS 68K Linker caused exception 0xc005 when I build a multi-segment C++ project in CodeWarrior (v6, 68Linker.dll v2.3.2.0). It happens as soon as I declare a global object of a class that has a constructor defined. It doesn't happen if I reduce the scope of the global

Linker error with new and delete operator.

2006-07-24 Thread babbu cathy
Hello all, Can anyone give me the solution. When i try to compile my project in codewarrior 9.3, it gives me the following linker error message, can you suggest me to resolve this error ? Error: 1. operator new(unsigned long) referenced from myfunction() is undefined. 2. operator delete(void

Re: Linker error with new and delete operator.

2006-07-24 Thread Andrew Scheurer
the following linker error message, can you suggest me to resolve this error ? Error: 1. operator new(unsigned long) referenced from myfunction() is undefined. 2. operator delete(void*) referenced from myfunction() is undefined. cathy

Re: Linker error with new and delete operator.

2006-07-24 Thread babbu cathy
Well, I am using Codewarrior IDE compiler.. I tried adding MSL, but i am getting the same linker error still.:( cathy. --- Andrew Scheurer [EMAIL PROTECTED] wrote: Its possible that you're not linking in the MSL C++ library. Are you using the command line compiler or the IDE w/ Metrowerks

Re: Linker error with new and delete operator.

2006-07-24 Thread Andrew Scheurer
getting the same linker error still.:( cathy. --- Andrew Scheurer [EMAIL PROTECTED] wrote: Its possible that you're not linking in the MSL C++ library. Are you using the command line compiler or the IDE w/ Metrowerks... --- babbu cathy [EMAIL PROTECTED] wrote: Hello all

Hai Regading Linker Error

2006-06-16 Thread sanjib mohanty
Hai I am creating a applicatrion for that i need to Put some alerts if i put that alert it showing linker error 16-bit code reference to pilotmain is out of range if i commented that alert its not showing this alert can any one suggest me how to over come this problemRegards,Sanjib

Re: Linker Error

2005-12-08 Thread Jim Cooper
If you use just the SyncManager API (the raw C API), you should be able to use the sync DLLs. If you use the C++ classes, you'll have MFC dependency issues, since the classes are derived from MFC classes. Yes (I did try and explain that at one point, but I don't think I was clear enough :(

Re: Linker Error

2005-12-08 Thread Del Ventruella
produced a .def file that included mangled references to unknown functions. I do not know if the MFC classes were actually used in the base code as I did not review it myself in detail given the linker error. I don't know with certainty if the references to which I previously referred in a .def

Re: Linker Error

2005-12-08 Thread Jim Cooper
I note that recompiling the dll for C and not C++ was recommended at the Borland user group site. Yes, but they had imperfect knowledge of the problem. Sync20.dll does not use C++ (at least in presenting anything externally) or it would not be callable from anything but C++. It uses

Re: Linker Error

2005-12-08 Thread Del Ventruella
Syncmgr.h was, as I understand the process, accessed while the program was compiling, not linking, and my problem was with a linker error. I don't understand the need to refer to imperfect knowledge. A linker problem must develop from fairly well known causes, to which professional programmers

Re: Re: Linker Error

2005-12-08 Thread
Hola, gracias por escribirme, te contestaré a la mayor brevedad !!! Jose -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Linker Error

2005-12-08 Thread Jim Cooper
Syncmgr.h was, as I understand the process, accessed while the program was compiling, not linking, and my problem was with a linker error. Yes. The syncmgr.h file is for compiling, and the sync20.lib file (the one in the CDK) is for linking, right? I don't understand the need to refer

Re: Linker Error

2005-12-07 Thread Jim Cooper
I'm not exactly away to the races, but the COM dll just enabled me to access the name field of one of my records. If I can access integers and strings as easily, I may be able to complete the conduit. Well, all Palm records are just blobs of bytes, so you always have to do the work

Re: Linker Error

2005-12-07 Thread Del Ventruella
A conduit dll from PalmOS is the code that contains the MFC references, as acknowledged by Mr. Combee. Without access to the referenced MFC components on my system, the code that references it can't link to it. One would have to write some sort of replacement. I'd rather not. A dll is compiled

Re: Linker Error

2005-12-07 Thread Jim Cooper
A conduit dll from PalmOS is the code that contains the MFC references, as acknowledged by Mr. Combee. Without access to the referenced MFC components on my system, the code that references it can't link to it. But that is not true. I'm using Delphi (Object Pascal) to call routines in the

Re: Re: Linker Error

2005-12-07 Thread
Hola, gracias por escribirme, te contestaré a la mayor brevedad !!! Jose -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Linker Error

2005-12-07 Thread Ben Combee
At 08:40 AM 12/7/2005, you wrote: A conduit dll from PalmOS is the code that contains the MFC references, as acknowledged by Mr. Combee. Without access to the referenced MFC components on my system, the code that references it can't link to it. But that is not true. I'm using Delphi (Object

Re: Linker Error

2005-12-07 Thread Del Ventruella
Thanks, but I'm now in the middle of applying the COM based solution in VB. - Original Message - From: Ben Combee [EMAIL PROTECTED] To: Palm Developer Forum palm-dev-forum@news.palmos.com Sent: Wednesday, December 07, 2005 11:59 AM Subject: Re: Linker Error At 08:40 AM 12/7/2005, you

Re: Linker Error

2005-12-06 Thread Del Ventruella
: Re: Linker Error Subject: Re: Linker Error From: Ben Combee [EMAIL PROTECTED] Date: Sat, 03 Dec 2005 12:29:16 -0600 At 08:23 AM 12/3/2005, you wrote: I visited a Borland help site, and over the past few days have reached the conclusion that some of the Palm OS dlls are using MFC

Re: Linker Error

2005-12-06 Thread Jim Cooper
It seems to be necessary if you don't have MFC on your system based on no install of VC++, because Builder won't compile with the indicated references in the .def file. I still say that's not necessary. I can call all these things from a different language that cannot possibly be using

Re: Re: Linker Error

2005-12-06 Thread
Hola, gracias por escribirme, te contestaré a la mayor brevedad !!! Jose -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Linker Error

2005-12-06 Thread Robert Moynihan
Jim Cooper wrote: It seems to be necessary if you don't have MFC on your system based on no install of VC++, because Builder won't compile with the indicated references in the .def file. I still say that's not necessary. I can call all these things from a different language that cannot

Re: Linker Error

2005-12-06 Thread Del Ventruella
, 2005 11:15 AM Subject: Re: Linker Error Jim Cooper wrote: It seems to be necessary if you don't have MFC on your system based on no install of VC++, because Builder won't compile with the indicated references in the .def file. I still say that's not necessary. I can call all

Re: Re: Linker Error

2005-12-06 Thread Del Ventruella
palm-dev-forum@news.palmos.com Sent: Tuesday, December 06, 2005 10:51 AM Subject: Re: Re: Linker Error Hola, gracias por escribirme, te contestaré a la mayor brevedad !!! Jose -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com

Re: Linker Error

2005-12-06 Thread Robert Moynihan
Del Ventruella wrote: Rest assured that I am always grateful for the helpful suggestions that I get here. I am quite new to C or C++ for more than engineering computations and matrix manipulation, and am simply trying to approach PalmOS programming from a perspective that is realistic for me.

Re: Linker Error

2005-12-05 Thread Roger Stringer
Subject: Re: Linker Error From: Ben Combee [EMAIL PROTECTED] Date: Sat, 03 Dec 2005 12:29:16 -0600 At 08:23 AM 12/3/2005, you wrote: I visited a Borland help site, and over the past few days have reached the conclusion that some of the Palm OS dlls are using MFC functions. The dll that caused

Re: Linker Error

2005-12-04 Thread Jim Cooper
Yes, the Conduit DLLs use MFC. If you need to develop using Borland products, you should use the COM interface to the CDK and go through COM classes. Sorry. That's not necessary. I call the DLL routines directly from Delphi (ie Pascal). There is no need to descend into the quagmire of COM

Re: Linker Error

2005-12-04 Thread Del Ventruella
: Linker Error Yes, the Conduit DLLs use MFC. If you need to develop using Borland products, you should use the COM interface to the CDK and go through COM classes. Sorry. That's not necessary. I call the DLL routines directly from Delphi (ie Pascal). There is no need to descend

Linker Error

2005-12-03 Thread Del Ventruella
at the end? I've been advised as follows by other Borland users: TEXT OF EXCHANGE ON MESSAGE BOARD: I've tried the impdef executable on the two dll's that remained problematic. The result is the following error message when I add the resulting two .def files to the project: [Linker Error] sync20

Re: Linker Error

2005-12-03 Thread Ben Combee
At 08:23 AM 12/3/2005, you wrote: I visited a Borland help site, and over the past few days have reached the conclusion that some of the Palm OS dlls are using MFC functions. The dll that caused the problem is Sync20.dll, which is pretty central to building a conduit. Can anyone help with

Re: Linker Error

2005-12-03 Thread Del Ventruella
How do I get a version of VB 5.0 or Borland C++ to recognize the COM Wizard? Thanks. - Original Message - From: Ben Combee [EMAIL PROTECTED] To: Palm Developer Forum palm-dev-forum@news.palmos.com Sent: Saturday, December 03, 2005 1:29 PM Subject: Re: Linker Error At 08:23 AM 12/3

Re: Linker Error

2005-12-03 Thread Ben Combee
At 04:27 PM 12/3/2005, you wrote: How do I get a version of VB 5.0 or Borland C++ to recognize the COM Wizard? You could just build it youself without the wizard. It's COM -- import the typelibrary and work directly with the interfaces. -- Ben Combee, Senior Software Engineer, Palm, Inc.

Re: Linker Error

2005-12-03 Thread Del Ventruella
At my stage, I'd much rather use a wizard, if possible. Can you advise how? Thanks. - Original Message - From: Ben Combee [EMAIL PROTECTED] To: Palm Developer Forum palm-dev-forum@news.palmos.com Sent: Saturday, December 03, 2005 5:30 PM Subject: Re: Linker Error At 04:27 PM 12/3

(68K) Linker Error

2004-06-11 Thread Roberto Machorro
Hi I just added a file into a multi-segment application, using CW7. The functions in that file are called from another file (in that same segment). Prototypes are in a header file called by both files. The segment is under 25KB in size. It compiles fine, but the linker reports the following:

RE: 'TxtGlueTruncateString' referenced from 'MainFormHandleEvent' is undefined. Linker error?

2004-06-02 Thread Ben Combee
At 12:33 AM 6/2/2004, you wrote: I don't know where can I include the lib files. i am using code warrior tool. Just add the PalmOSGlue.lib file to your project. If you're creating a new project using the wizard, including glue libraries is one of the options. -- Ben Combee, DTS technical lead,

RE: 'TxtGlueTruncateString' referenced from 'MainFormHandleEvent' is undefined. Linker error?

2004-06-02 Thread Isabella
'MainFormHandleEvent' is undefined. Linker error? At 12:33 AM 6/2/2004, you wrote: I don't know where can I include the lib files. i am using code warrior tool. Just add the PalmOSGlue.lib file to your project. If you're creating a new project using the wizard, including glue libraries is one

RE: 'TxtGlueTruncateString' referenced from 'MainFormHandleEvent' is undefined. Linker error?

2004-06-02 Thread Ben Combee
At 03:05 AM 6/2/2004, you wrote: I already created the project? How can i include this lib? is there any other way? CW has a Add File... menu item in the project menu. Use that to add the library file to your project. -- Ben Combee, DTS technical lead, PalmSource, Inc. Read Combee on Palm OS

PRC-Tools linker error

2004-06-01 Thread cristian . brunelli
Hello, I need help to understand an error coming from PRC-Tools linker. I use this command: m68k-palmos-gcc.exe -o app.code.1.sym app.c -lPalmOSGlue The (very long) error message starts with this line: /usr/m68k-palmos/bin/ld: region coderes is full (app.code.1.sym section .text) I think it's

Re: PRC-Tools linker error

2004-06-01 Thread Aaron Ardiri
Hello, I need help to understand an error coming from PRC-Tools linker. I use this command: m68k-palmos-gcc.exe -o app.code.1.sym app.c -lPalmOSGlue The (very long) error message starts with this line: /usr/m68k-palmos/bin/ld: region coderes is full (app.code.1.sym section .text) I

Re: PRC-Tools linker error

2004-06-01 Thread John Marshall
On Tue, Jun 01, 2004 at 11:29:09AM +0200, [EMAIL PROTECTED] wrote: I think it's related to 'CODE' resource size, which should be less than 64 kb. But the latest version I compiled without this error gives a 54kb .prc file, which includes many resources (fonts, bitmaps ecc.) so how can the

'TxtGlueTruncateString' referenced from 'MainFormHandleEvent' is undefined. Linker error?

2004-06-01 Thread Isabella
Hi all, i am getting Link Error as follows. 'TxtGlueTruncateString' referenced from 'MainFormHandleEvent' is undefined. Can any one tell me the solution. Thanks Isabella. -- For information on using the Palm Developer Forums, or to unsubscribe, please see

'TxtGlueTruncateString' referenced from 'MainFormHandleEvent' is undefined. Linker error?

2004-06-01 Thread Isabella s
Hi all, i am getting Link Error as follows. 'TxtGlueTruncateString' referenced from 'MainFormHandleEvent' is undefined. Can any one tell me the solution. Thanks Isabella. -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: 'TxtGlueTruncateString' referenced from 'MainFormHandleEvent' is undefined. Linker error?

2004-06-01 Thread LionScribe
Did you add the PalmOSGlue lib to your project? LionScribe Isabella s [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi all, i am getting Link Error as follows. 'TxtGlueTruncateString' referenced from 'MainFormHandleEvent' is undefined. Can any one tell me the solution.

RE: 'TxtGlueTruncateString' referenced from 'MainFormHandleEvent' is undefined. Linker error?

2004-06-01 Thread Isabella s
from 'MainFormHandleEvent' is undefined. Linker error? Did you add the PalmOSGlue lib to your project? LionScribe Isabella s [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi all, i am getting Link Error as follows. 'TxtGlueTruncateString' referenced from 'MainFormHandleEvent

linker error

2004-02-10 Thread Partha B
HI all, I always had this Linker Error: func_xxx referenced from func_yyy is undefined in CodeWarrior. I used to work around this error by including the .c file directly where I call the function, instead of including the .h file. Now I am into serious development of huge apps running on Palm

Re: linker error

2004-02-10 Thread Alan Ingleby
; they're fundamental C issues. Alan Partha B [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] HI all, I always had this Linker Error: func_xxx referenced from func_yyy is undefined in CodeWarrior. I used to work around this error by including the .c file directly where I call

RE: linker error

2004-02-10 Thread Ben Combee
First, include the .c files directly in your project, and, second, make sure your functions aren't declared as static. That limits their visibility to just that file. -Original Message- From: Partha B Date: 2/10/04 4:22 pm To: Palm Developer Forum Subj: linker error HI all, I

Linker error: Structure is undefined...

2004-01-16 Thread Flex
with function it was accessed from and... surprise - I've got linker error That this structure is undefined. It's strange because it's defined, included in the project, have an extern prototype... like the others, but this one fires an linker error. So I have 3 questions: 1. Is this something stupid

Re: Linker error: Structure is undefined...

2004-01-16 Thread Flex
it const I've got this 32bit reference again. So I moved it to a C file and put togather in the segment with function it was accessed from and... surprise - I've got linker error That this structure is undefined. It's strange because it's defined, included in the project, have an extern prototype

CW9, Linker error: PalmRez error: could not open file...,

2003-08-14 Thread George VS
Hi group, I have .R resource I want to reuse in my new PalmOS app. I have created a Convert Resources (MacOS Merge) target as documented. But, I get this error when I build the project: Link Error: PalmRez Error: Could not open file: resources.tmp in resources.tmp; line 1 # Col: 1 The file

RE: CW9, Linker error: PalmRez error: could not open file...,

2003-08-12 Thread Kaloyan Donev
Of George VS Sent: Monday, August 11, 2003 17:38 To: Palm Developer Forum Subject: CW9, Linker error: PalmRez error: could not open file..., Hi group, I have .R resource I want to reuse in my new PalmOS app. I have created a Convert Resources (MacOS Merge) target as documented. But, I get this error

Re: linker error

2003-06-05 Thread Ben Combee
At 10:16 2003-6-4 +, swatts wrote: I made a sample project in code warrior the one which is given in its documentation,BUt after adding resources i tried to compile and run it but ti gives linker error ie PALMREZ ERROR:can't find pict#0 for tbmf#1000. how to debug and what to do .how we have

linker error

2003-06-04 Thread swatts
I made a sample project in code warrior the one which is given in its documentation,BUt after adding resources i tried to compile and run it but ti gives linker error ie PALMREZ ERROR:can't find pict#0 for tbmf#1000. how to debug and what to do .how we have to go abt it? can anyone help me

Linker error?

2002-12-09 Thread Dan
Anyone know what the following error means and how to fix it perhaps? Link Error: Anim.c: Illegal object data in 'Anim.c'. Thanx, Daniel Suleski :- TD, Mysticware Inc. www.mysticware.com -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: Linker error?

2002-12-09 Thread Ben Combee
At 18:53 2002-12-9 -0500, you wrote: Anyone know what the following error means and how to fix it perhaps? Link Error: Anim.c: Illegal object data in 'Anim.c'. This usually means that you're trying to link a project originally built with the demo version of CodeWarrior. Use the

RE: Zlib linker error

2002-08-09 Thread Amit Kalekar
Hello Scott, thanks for helping out. The parameter flagged above is wrong -- ZLibcompress2 takes an (unsigned long*) but you are passing an (unsigned long) instead. The unnecessary cast is actually masking the error. (There are several other unnecessary casts in this code too.) Just pass

RE: Zlib linker error

2002-08-08 Thread Scott Johnson
From: Amit Kalekar [mailto:[EMAIL PROTECTED]] unsigned long complen = (unsigned long)51 * (unsigned long)120 / (unsigned long)100 + (unsigned long)12; Bytef* compbuf = new Bytef[complen]; Allocating a plenty big output buffer, good. MemSet(compbuf, 0x00, complen);

RE: Linker Error in CW 8.2

2002-05-31 Thread Paul Gibson
thing about Windows IMHO is the install/uninstall trouble. Thank goodness for gurus in forums. Paul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Ben Combee Sent: Thursday, May 30, 2002 11:49 PM To: Palm Developer Forum Subject: RE: Linker Error in CW

RE: Linker Error in CW 8.2

2002-05-31 Thread Heather Tufts
I uninstalled all CW Palm apps, deleted the entire directory structure (just in case . . .), reinstalled, and bada bing, it works. I don't know if you need to change your install or just issue a stern warning to uninstall the demo first. The worst thing about Windows IMHO is the

RE: Linker Error in CW 8.2

2002-05-31 Thread Paul Gibson
] [mailto:[EMAIL PROTECTED]]On Behalf Of Heather Tufts Sent: Friday, May 31, 2002 7:33 AM To: Palm Developer Forum Subject: RE: Linker Error in CW 8.2 I uninstalled all CW Palm apps, deleted the entire directory structure (just in case . . .), reinstalled, and bada bing, it works. I don't know

RE: Linker Error in CW 8.2

2002-05-30 Thread Paul Gibson
Subject: RE: Linker Error in CW 8.2 In article 87587@palm-dev-forum, [EMAIL PROTECTED] says... Ok, a little more info. After searching the archives I see that this could have to do with access paths etc . . . I am not sure if I am using the right linker. I am running on Win2K

RE: Linker Error in CW 8.2

2002-05-30 Thread Ben Combee
In article 87641@palm-dev-forum, [EMAIL PROTECTED] says... Thanks to all for your tips . . . :-D Ben, I figured you would zero in on this . . . yes I had the demo installed. All of my access paths are relative to compiler. I am assuming that this would have been updated to mean the 8.0

Linker Error in CW 8.2

2002-05-29 Thread Paul Gibson
Ok, this one must be simple, but not when you are me right now . . . I have ported an old project into CW. I compiled each source file separately along the way. When I (finally) got each source file to compile I figured that I was ready to go. I then tried Make and I get the following error

RE: Linker Error in CW 8.2

2002-05-29 Thread Vinu Raj
Ok, this one must be simple, but not when you are me right now . . . I have ported an old project into CW. I compiled each source file separately along the way. When I (finally) got each source file to compile I figured that I was ready to go. I then tried Make and I get the following

RE: Linker Error in CW 8.2

2002-05-29 Thread Paul Gibson
Ummm, I tried the first two (removing object code, and also removing the _Data directory) and the errors persist. This is not multi-segment, so that leaves the run time library. In my project settings (project window) I see that it is PalmOSRuntime_2i_A5.lib. I am trying to build this for

Re: Linker Error in CW 8.2

2002-05-29 Thread Hal Mueller
What happens when you create a new PalmOS project with the wizard? Does that compile/link ok? If you can get that working, you can either go screen by screen through the project configuration panels and compare the two projects, or add your source files to the wizard project. -- For

RE: Linker Error in CW 8.2

2002-05-29 Thread Heather Tufts
I am not sure if I am using the right linker. I am running on Win2K, and for linker options in the target window see: none, Macintosh 68k, MacOS Merge, and, MakeROM. None of these look correct, although I have chosen the default: Macintosh68k. Seems that is the only one that tries to

RE: Linker Error in CW 8.2

2002-05-29 Thread Ben Combee
In article 87587@palm-dev-forum, [EMAIL PROTECTED] says... Ok, a little more info. After searching the archives I see that this could have to do with access paths etc . . . I am not sure if I am using the right linker. I am running on Win2K, and for linker options in the target window

Linker Error

2002-05-04 Thread Ravi Verma
Dear Friends, While trying to compile, I get the error Link Error : dfg.c: 'DuplicateCurrentRecord' 16-bit code reference to 'LibGetRecord' is out of range. Do you have an idea as to what could be causing this? I am using CodeWarrior8.0. Regards. Ravi Verma 916 705 3261 -- For

Re: Linker Error

2002-05-04 Thread Joe
--- Ravi Verma [EMAIL PROTECTED] wrote: While trying to compile, I get the error Link Error : dfg.c: 'DuplicateCurrentRecord' 16-bit code reference to 'LibGetRecord' is out of range. Do you have an idea as to what could be causing this? I am using CodeWarrior8.0. You have too much

'Precompiled Heder' Linker Error ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

2002-04-18 Thread Amit Kalekar
Hello All, I am getting the following Linker Error Message? Please could any one tell me what does it mean? and what are the changes I have to make accordingly to avoid this message. Segment 'Precompiled Heder' is greater than 64KB, it will generate an invalid PRC file. With Regards, Amit

Re: 'Precompiled Heder' Linker Error ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

2002-04-18 Thread Joe
--- Amit Kalekar [EMAIL PROTECTED] wrote: Hello All, snip Amit, Please stop adding ~~~ to your subject lines. Thank you. __ Do You Yahoo!? Yahoo! Tax Center - online

RE: 'Precompiled Heder' Linker Error

2002-04-18 Thread Heather Tufts
I am getting the following Linker Error Message? Please could any one tell me what does it mean? and what are the changes I have to make accordingly to avoid this message. Segment 'Precompiled Heder' is greater than 64KB, it will generate an invalid PRC file. This error means that your

Linker error Near data segment is bigger than 64k (question to Ben Combee)

2002-02-19 Thread Lubomyr Humetsky
Hi, I am developing Palm Application with CW R6. My Application use C++ Exceptions. On some stage of development process I received mentioned linker error. I reviewed generated by linker MAP file. Indeed, Application's data segment is overflowed, moreover just data section above A5 is overflowed

Linker error Near data segment is bigger than 64k

2002-02-15 Thread Lubomyr Humetsky
Hi, I am developing Palm Application using latest version of POL. On some stage of development process I received Near data segment is bigger than 64k linker error. I know about segment structure of the Palm Applications and also I know that data segment should be less than 64k. Code of my

RE: Linker error Near data segment is bigger than 64k

2002-02-15 Thread Heather Tufts
I am developing Palm Application using latest version of POL. On some stage of development process I received Near data segment is bigger than 64k linker error. I know about segment structure of the Palm Applications and also I know that data segment should be less than 64k. Code

Prblm: Linker error Segment Precompiled Headers is greater than 64KB, it will generate an invalid PRC file.

2002-01-15 Thread Ola Theander
Dear subscribers. I'm developing an application using CodeWarrior 8.0. When I link it I get a message that states Segment 'Precompiled Headers' is greater than 64KB, it will generate an invalid PRC file. Unfortunately I haven't managed to find any more information about this problem. Therefore I

RE: Prblm: Linker error Segment Precompiled Headers is greater than 64KB, it will generate an invalid PRC file.

2002-01-15 Thread Trevor Menagh
) 367-1600 x20 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Ola Theander Sent: Tuesday, January 15, 2002 2:00 PM To: Palm Developer Forum Subject: Prblm: Linker error Segment Precompiled Headers is greater than 64KB, it will generate an invalid PRC file

Linker error

2001-12-19 Thread Max Bian
Hi. I guess I got the following error because my code becomes too big. How would I fix that without goint to multi-segment. The whole thing compiles without the -DDEBUG and the size is about 45K. I use that flag to link in some HostControl functions to save debug messages to a host file.

RE: Linker error

2001-12-19 Thread Michael Glickman
:50 To: Palm Developer Forum Subject: Linker error Hi. I guess I got the following error because my code becomes too big. How would I fix that without goint to multi-segment. The whole thing compiles without the -DDEBUG and the size is about 45K. I use that flag to link in some HostControl

Re: C string functions and strtok() linker error, using CW 7?

2001-10-25 Thread Ben Combee
Ola Theander [EMAIL PROTECTED] wrote in message news:65903@palm-dev-forum... Hi Craig. I use cstring. I can also use string.h but then the std namespace is excluded. Also remember to include the MSL_C\MSL_Common\Include folder in the system access path. How do I include a library in a CW

Re: C string functions and strtok() linker error, using CW 7?

2001-10-25 Thread Craig Deelsnyder
, Craig -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Ola Theander Sent: Wednesday, October 24, 2001 1:42 PM To: Palm Developer Forum Subject: C string functions and strtok() linker error, using CW 7? Dear subscribers. I'm currently using CW 7

C string functions and strtok() linker error, using CW 7?

2001-10-24 Thread Ola Theander
Dear subscribers. I'm currently using CW 7 and developing a simple application. In this application I would like to use the standard C library functions such as strtok(), strlen(), strcpy() etc, implemented in the MSL library. My problem is that strtok() generates a linker error when I'm

RE: C string functions and strtok() linker error, using CW 7?

2001-10-24 Thread Craig Deelsnyder
]]On Behalf Of Ola Theander Sent: Wednesday, October 24, 2001 1:42 PM To: Palm Developer Forum Subject: C string functions and strtok() linker error, using CW 7? Dear subscribers. I'm currently using CW 7 and developing a simple application. In this application I would like to use the standard C library

RE: C string functions and strtok() linker error, using CW 7?

2001-10-24 Thread Craig Deelsnyder
). Craig -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Ola Theander Sent: Wednesday, October 24, 2001 4:17 PM To: Palm Developer Forum Subject: RE: C string functions and strtok() linker error, using CW 7? Hi Craig. I use cstring. I can also use string.h

Unexpected linker error #32 (DirectBits not supported) in CW.

2001-10-01 Thread Eugene Mayevski
Hello! I am trying to compile (CodeWarrior 7) the project sent to me by one of our users and I get the message: Linker error: Unexpected linker error #32. DirectBits not supported. Any ideas about what might cause the message? -- Sincerely yours, Eugene Mayevski -- For information

Re: Unexpected linker error #32 (DirectBits not supported) in CW.

2001-10-01 Thread Ben Combee
Eugene Mayevski [EMAIL PROTECTED] wrote in message news:63741@palm-dev-forum... Hello! I am trying to compile (CodeWarrior 7) the project sent to me by one of our users and I get the message: Linker error: Unexpected linker error #32. DirectBits not supported. http://www.escribe.com

Linker Error

2001-08-24 Thread Anton Nikolaev
Hello, When I try to make my project usin CodeWarrior 6 I got the following: Linker Error: Direct Bids not supported. Do you know what might be the problem? I have not found any explanation in CodeWarrior help. Anton -- For information on using the Palm Developer Forums, or to unsubscribe

RE: Linker Error

2001-08-24 Thread Heather Tufts
-Original Message- From: Anton Nikolaev [mailto:[EMAIL PROTECTED]] When I try to make my project usin CodeWarrior 6 I got the following: Linker Error: Direct Bids not supported. Do you know what might be the problem? I have not found any explanation in CodeWarrior help

RE: Time to load rsrc files (was: DIrectBits Linker Error -- Than k you!)

2001-05-16 Thread Craig Patchett
From: Craig Patchett Also, as long as I'm asking, Constructor (for Windows) has always taken a really long time (20-30 seconds) to open my .rsrc files. Is this normal? At what MHz is your CPU running, and how much memory do you have? When I switched from a 100MHz, 128MB machine to a

Linker Error

2001-05-15 Thread Kapil Konde
Hi All, I am getting a linker error for some reason unknown to me. The error is as follows. Can anybody tell me what does this mean and how do I solve it. Linking... /prc-tools/H-i586-cygwin32/m68k-palmos/bin/ld: region datares is full (Debug/PalmTest section .data) collect2

Re: Linker Error

2001-05-15 Thread Rohit . Kanwar
-tools_3.html or palmdev\doc\texti\prc-tools_10.html under the install directory of Palm OS SDK I am getting a linker error for some reason unknown to me. The error is as follows. Can anybody tell me what does this mean and how do I solve it. Linking... /prc-tools/H-i586-cygwin32

RE: Linker Error

2001-05-15 Thread Manikumar Kandhasamy
: Tuesday, May 15, 2001 12:05 AM To: Palm Developer Forum Subject: Linker Error Hi All, I am getting a linker error for some reason unknown to me. The error is as follows. Can anybody tell me what does this mean and how do I solve it. Linking... /prc-tools/H-i586-cygwin32/m68k-palmos

RE: Linker Error

2001-05-15 Thread Rohit . Kanwar
, Manikumar K -Original Message- From: Kapil Konde [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 12:05 AM To: Palm Developer Forum Subject: Linker Error Hi All, I am getting a linker error for some reason unknown to me. The error is as follows. Can anybody tell me what

Re: DirectBits Linker Error -- Thank you!

2001-05-14 Thread Craig Patchett
[EMAIL PROTECTED] wrote: Thanks to all for the suggestions -- using the post-linker dll from Constructor in 4.0 worked beautifully. This fixed the same problem I was having also. I'm now experiencing a different problem, however, that also seems related to upgrading to Constructor 1.6...some

RE: Time to load rsrc files (was: DirectBits Linker Error -- Thank you!)

2001-05-14 Thread Richard Burmeister
From: Craig Patchett Also, as long as I'm asking, Constructor (for Windows) has always taken a really long time (20-30 seconds) to open my .rsrc files. Is this normal? At what MHz is your CPU running, and how much memory do you have? When I switched from a 100MHz, 128MB machine to a 1.4

  1   2   >