home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / NETTOOLS.ZIP / PingParmList.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-13  |  717 b   |  35 lines

  1.  
  2.  
  3. //
  4. // Parameter list structure passed to this thread
  5. //
  6. struct CPingThreadParmList
  7. {
  8.     HWND    m_hwndNotifyPingDone;
  9.     LPVOID  m_mythread;
  10.     HANDLE  m_hEventStartPing;
  11.     HANDLE  m_hEventPingDone;
  12.     HANDLE  m_hEventKillPing;
  13.     HANDLE  m_hEventPingDead;
  14.     CHAR    hostname[128];
  15.     BOOL    opt_resolve;
  16.     BOOL    opt_dontfragment;
  17.     BOOL    opt_interrupt;
  18.     BOOL    opt_rrloose;
  19.     BOOL    opt_rrstrict;
  20.     BOOL    opt_tracert;
  21.     int        opt_ttl_val;
  22.     int        opt_packetlen_val;
  23.     int        opt_numpackets_val;
  24.     int        opt_rroute_val;
  25.     int        opt_timestamp_val;
  26.     int        opt_tos_val;
  27.     int        opt_timeout_val;
  28.     //CStringArray m_PingOutPut;
  29.     CStringArray opt_rrdata;
  30. };
  31.  
  32. //
  33. // main thread proc
  34. //
  35. //UINT CPingThreadProc(LPVOID lparam);