home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
CSAPE32.ARJ
/
SOURCE
/
CSSRC
/
SDMOVFLD.C
< prev
next >
Wrap
C/C++ Source or Header
|
1990-03-28
|
531b
|
31 lines
/*
sdmovfld.c 4/10/88
% sed_MoveField
C-scape 3.2
Copyright (c) 1988, by Oakland Group, Inc.
ALL RIGHTS RESERVED.
Revision History:
-----------------
3/24/89 jmd added sed_ macros
3/28/90 jmd ansi-fied
*/
#include "sed.h"
void sed_MoveField(sed_type sed, int fieldno, int row, int col)
/*
Move a field to a new location.
*/
{
menu_MoveField(sed_GetMenu(sed), fieldno, row, col);
if (fieldno == sed_GetFieldNo(sed)) {
/* adjust the cursor position */
sd_adjust_cur(sed);
}
}