Undefined symbol: .getcury in getyx


 
Thread Tools Search this Thread
Top Forums Programming Undefined symbol: .getcury in getyx
# 1  
Old 03-21-2006
Question Undefined symbol: .getcury in getyx

Iam attempting a script to return the current cursor position using the getyc macro

I have #included the curses.h

however on compilation (with gcc) it errors with

Undefined symbol .getcury
Undefined symbol .gercurx

Any ideas where I can find a solution or what I've missed
# 2  
Old 03-22-2006
Quote:
Iam attempting a script to return the current cursor position using the getyc macro
there is no getyc macro and only getyx macro available
did u compile with -lcurses option?

If you still have problem.

Please post your code!!! Smilie
# 3  
Old 03-22-2006
Power

I have now !, many thanks for your advice.

Last edited by gefa; 03-23-2006 at 04:44 AM..
# 4  
Old 03-23-2006
Question

I do have one further issue however, the line is returned 16424 and the column as 9001 no matter where the cusror is ?

The code is very basic but reads as follows;


#include <curses.h>
int rvline, rvcolumn;
main()
{
WINDOW *my_window;
getyx(my_window, rvline, rvcolumn);
printf ("The line is %i\n", rvline);
}
# 5  
Old 03-23-2006
yes it will display some junk value,

you are still not in graphics mode and still in console mode,

initialize graphics mode and find the cursor position !!!

man initscr
and
man endwin

for details
# 6  
Old 03-24-2006
Question

Thanks for the info, read the man pages but not sure how and where to put the subroutine in the script

I've put it at the top, but being fairly new and a bit of a novice to C I'm not confident

#include <stdio.h>
#include <curses.h>

WINDOW *initscr(void);
SCREEN *newterm(char *type,
FILE *outfile,
FILE *infile);
initscr();

main()
{
int rvline, rvcolumn;
WINDOW *my_window;
getyx(my_window, rvline, rvcolumn);
printf ("The line is %i\n", rvline);
}

compilation errors

CursorPos.c:7: conflicting types for `initscr32'
CursorPos.c:3: previous declaration of `initscr32'
CursorPos.c:7: warning: data definition has no type or storage class
# 7  
Old 03-24-2006
Quote:
WINDOW *initscr(void);
SCREEN *newterm(char *type,
FILE *outfile,
FILE *infile);
initscr();
functions redeclared and conflicting with the prototypes;
and still you have not invoked the graphics mode and still in console mode.

Try the following code,
Code:
#include <stdio.h>
#include <curses.h>

int main()
{
  int rvline, rvcolumn;
  WINDOW *my_window;
  my_window=initscr();
  getyx(my_window, rvline, rvcolumn);
  wprintw(my_window, "prior to cur movement %d %d\n", rvline, rvcolumn);

  getyx(my_window, rvline, rvcolumn);
  wprintw(my_window, "after to cur movement %d %d\n", rvline, rvcolumn);

  wprintw(my_window, "CURSOR");
  getyx(my_window, rvline, rvcolumn);
  wprintw(my_window, "\nafter to cur movement %d %d\n", rvline, rvcolumn);
  getch();
  endwin();
  return 0;
}

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Undefined Symbol

When I try to link a .so file I get the undefined symbol error. Though I have the library file in my system. The compile and linking commands used are as follows g++ -m64 -g -Wall -I./include -c dxl_sample.c g++ -o firstprogram -m64 -g -Wall -I./include -Bdynamic... (1 Reply)
Discussion started by: Ranadeep Ghosal
1 Replies

2. Programming

Undefined Symbol

When I try to link a .so file I get the undefined symbol error. Though I have the library file in my system. The compile and linking commands used are as follows g++ -m64 -g -Wall -I./include -c dxl_sample.c g++ -o firstprogram -m64 -g -Wall -I./include -Bdynamic... (1 Reply)
Discussion started by: Ranadeep Ghosal
1 Replies

3. Programming

gmake undefined symbol error

I have a C code which i am trying to compile using gcc. When i am trying to compile it i get the error undefined symbol error though i am providing the -l*** option where *** refers to the module where the object files for those symbols are present. Can someone help me on the same. (4 Replies)
Discussion started by: manaankit
4 Replies

4. Programming

ld: 0711-317 ERROR: Undefined symbol: stdscr

I am trying to compile pro*c program on aix 5.3. The program compiled fine when I was using curses library. After switching to ncurses, I have started getting compilation errors. After installing ncurses on the box, I changed the -lcurses flag to -lncurses. I have also updated the path to the... (13 Replies)
Discussion started by: wvuguy
13 Replies

5. Programming

Error: Undefined Symbol ..... First referenced in file......

Hi, I am working with Solaris 5.9 and I am newbie in Socket programming and I stated working with socket programming and I copyed a simple client & server program from a website which I am attaching with this and when I am compiling these files.I am getting the error-- Please Help me to... (1 Reply)
Discussion started by: smartgupta
1 Replies

6. AIX

Undefined symbol: .log

Hi All, When I am compiling expect 5.40 library in AIX 5.3, I am getting the following error while generating expect5.40.so file. ld: 0711-317 ERROR: Undefined symbol: .log ld: 0711-317 ERROR: Undefined symbol: .pow ld: 0711-345 Use the -bloadmap or... (0 Replies)
Discussion started by: ravindra_maddal
0 Replies

7. Programming

undefined symbol: clock_gettime' error

Hi, i've compiled my app on x86_64 with -m32 gcc option. Can anybody tell me what is/would typically cause the 'undefined symbol: clock_gettime' error?? -1 k){0N!x y} '/home/da71336/simon/mkvfh/mkv.so: undefined symbol: clock_gettime @ "q" "subr:mkv 2:`subr,3; subc:mkv 2:`subc,1;... (4 Replies)
Discussion started by: dpa078
4 Replies

8. Programming

shared object "undefined symbol: fstat" error

Didn't have this problem in AIX, but ported to Linux with GCC compiler and am now getting a runtime error: tssutil: symbol lookup error: /work/agility/devel/bin/libagam.so: undefined symbol: fstat I'm sure most of you know that fstat is an intrinsic function just like printf, memcpy, etc. When I... (5 Replies)
Discussion started by: marcus121
5 Replies

9. Programming

fread64 fwrite64 compilation problem (undefined symbol)

I use a standard C source to access large files in a 32 bit environment. I've replaced fopen, fwrite and fread by fopen64, fwrite64 and fread64. First I did a test only replacing fopen by fopen64, it compiled without any other changes to my compilation options. The program crashed on a write, as... (3 Replies)
Discussion started by: Isax50
3 Replies

10. Programming

ld: 0711-317 ERROR: Undefined symbol: .hello

Hello, when i compile with xlc on aix i got the error message "ld: 0711-317 ERROR: Undefined symbol: .hello" dummy.pc: #include <stdio.h> #include <stdlib.h> #include <string.h> #include "dummy.h" int main ( ) { printf("\nbefore Hello"); hello(); printf("\npast Hello"); ... (2 Replies)
Discussion started by: stockdan
2 Replies
Login or Register to Ask a Question