You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
610 B
34 lines
610 B
/* File: D:\WACKER\tdll\capture.hh (Created: 12-Jan-1994)
|
|
*
|
|
* Copyright 1994 by Hilgraeve Inc. -- Monroe, MI
|
|
* All rights reserved
|
|
*
|
|
* $Revision: 1 $
|
|
* $Date: 10/05/98 12:41p $
|
|
*/
|
|
|
|
struct stCapturePrivate
|
|
{
|
|
HSESSION hSession;
|
|
|
|
/* This is used if nothing else has been set */
|
|
LPTSTR pszInternalCaptureName;
|
|
|
|
LPTSTR pszDefaultCaptureName;
|
|
LPTSTR pszTempCaptureName;
|
|
|
|
int nDefaultCaptureMode;
|
|
int nTempCaptureMode;
|
|
|
|
int nDefaultFileMode;
|
|
int nTempFileMode;
|
|
|
|
int nState;
|
|
|
|
HMENU hMenu;
|
|
|
|
ST_IOBUF *hCaptureFile;
|
|
};
|
|
|
|
typedef struct stCapturePrivate STCAPTURE;
|
|
|