Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

30 lines
498 B

#ifndef _CAP_H_
#define _CAP_H_
//
// Constant declarations
//
#define MAX_CAP_LEVEL 0x10
#define MAX_CAP_ITERATION 0x03
#define CAP_BUFFER_SIZE MAX_CAP_LEVEL * 2
//
// Structure definitions
//
typedef struct _CAPFILTER
{
DWORD dwIterationLock;
DWORD dwIterationLevel;
DWORD dwRunLength;
DWORD dwCursor;
DWORD dwArray[CAP_BUFFER_SIZE];
} CAPFILTER, *PCAPFILTER;
//
// Function definitions
//
BOOL
AddToCap(PCAPFILTER pCapFilter,
DWORD dwAddress);
#endif //_CAP_H_