Cliff White wrote:
Looking at the code, we see lots of defines like this:
externPascal void a34AbapRead (
    tak_all_command_glob  &  acv,
    tsp00_MoveObj         &  handle,
    tsp00_Int4            &  row_count,
    tsp00_Int4               buf_size,
    tsp00_MoveObj         &  buf,
    tsp00_Int2            &  e);


Obviously, 'tsp00_Int4' is defined somewhere. Trouble is we can't find
where/how it is defined. Obviously, for multiple platforms this type of
stuff is necessary, is there some key or method to explain how to find
and resolve these definitions for a particular platform?
Cscope is failing us here.
cliffw
Cscope is failing because these types are defined in Pascal modules. During the build, the Pascal headers ($SRC/*/[vg]*00[0-9]*) are translated to C/C++ headers and are stored in $WRK/incl. So feeding this directory to Cscope should help (although it requires a build first).

Daniel Dittmar

--
Daniel Dittmar
SAP DB, SAP Labs Berlin
[EMAIL PROTECTED]
http://www.sapdb.org



_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

Reply via email to