Functions
definition
# Author: CASLSoft and Mark Jackson
# will send a palm program or data file (such as a casl program, or
# casl dbfile or file object file) to another palm device over the ir port
# no beamer.prc external library file provided (would create with GCC,
# and beamer.c, etc), so since only the c version of beamer is
# provided, use requires that you own caslpro compiler
# beamer.c file, ExgMgr.h, and casl_optional.c file with caslpro event
# handler and include statements for beamer.c and ExgMgr.h, must be
# in same folder as program files, see ExgMgr.h and casl_optional.c
# files provided with beamer.c
external "beamer";
# file_name is the name of the file to be sent
# send_name is the name it is being sent as and must end in .prc or .pdb
# send_description is the text that appears while beaming
# return zero if no error else returns an exchange manager error code
function beam_file(string file_name,
string send_name,
string send_description) as numeric;
end_external;
|