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.
31 lines
597 B
31 lines
597 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 2001
|
|
//
|
|
// File: rxutil.h
|
|
//
|
|
// Contents: Regular expression based helper functions
|
|
//
|
|
// History: 1-May-2001 kumarp created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
|
|
#ifndef _RXUTIL_H_
|
|
#define _RXUTIL_H_
|
|
|
|
|
|
|
|
EXTERN_C
|
|
BOOL
|
|
ParseLine(
|
|
IN PCWSTR szLine,
|
|
OUT PUINT pMatchStart,
|
|
OUT PUINT pMatchLength
|
|
);
|
|
|
|
EXTERN_C
|
|
DWORD RxInit();
|
|
|
|
#endif // _RXUTIL_H_
|