home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sd386v50.zip / sd386src.zip / STACK.H < prev    next >
Text File  |  1995-05-03  |  616b  |  21 lines

  1. typedef struct _stack_parms
  2. {
  3.  USHORT CS;
  4.  USHORT SS;
  5.  ULONG  EBP;
  6.  ULONG  ESP;
  7.  UCHAR  SSAtr;
  8.  int    ShowAllFlag;
  9. }STACK_PARMS;
  10.  
  11. /*****************************************************************************/
  12. /* Parameter interface for call stack dialog function.                       */
  13. /* This was put here for lack of a better place to put it. There is no       */
  14. /* logical reason for it to be here.                                         */
  15. /*****************************************************************************/
  16. typedef struct
  17. {
  18.   AFILE **fpp;
  19.   int    *rc;
  20. } CALLSTACKPARAM;
  21.