Leaked source code of windows server 2003
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

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2001
  5. //
  6. // File: rxutil.h
  7. //
  8. // Contents: Regular expression based helper functions
  9. //
  10. // History: 1-May-2001 kumarp created
  11. //
  12. //--------------------------------------------------------------------------
  13. #ifndef _RXUTIL_H_
  14. #define _RXUTIL_H_
  15. EXTERN_C
  16. BOOL
  17. ParseLine(
  18. IN PCWSTR szLine,
  19. OUT PUINT pMatchStart,
  20. OUT PUINT pMatchLength
  21. );
  22. EXTERN_C
  23. DWORD RxInit();
  24. #endif // _RXUTIL_H_