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.
22 lines
542 B
22 lines
542 B
/*++
|
|
|
|
Copyright (C) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ESPOPTS.H
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
LTAPIENTRY BOOL RegisterParserOptions(CLocUIOptionSet*);
|
|
LTAPIENTRY void UnRegisterParserOptions(const PUID&);
|
|
|
|
LTAPIENTRY BOOL GetParserOptionValue(const PUID &, LPCTSTR szName, CLocOptionVal *&);
|
|
LTAPIENTRY BOOL GetParserOptionBool(const PUID&, LPCTSTR pszName);
|
|
LTAPIENTRY const CPascalString GetParserOptionString(const PUID&, LPCTSTR pszName);
|
|
LTAPIENTRY DWORD GetParserOptionNumber(const PUID&, LPCTSTR pszName);
|
|
|
|
|
|
|