#ifndef TDKPIN_COMMAND_LINE_H #define TDKPIN_COMMAND_LINE_H #include "tdkpin_segmented.h" extern Win16FarPtr g_borland_command_line; /* 1028:0702/0704 */ extern HINSTANCE16 g_win16_instance; /* 1028:06fe */ typedef struct { Win16FarPtr token; uint16_t length; uint16_t remaining_index; } BorlandCommandToken; BorlandCommandToken borland_scan_command_token(uint16_t index); /* 1020:0871 */ uint16_t borland_parameter_count(void); /* 1020:0866 */ void borland_parameter_string( uint16_t index, Win16FarPtr destination); /* 1020:082e */ #endif