mirror of https://github.com/lianthony/NT4.0
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.
41 lines
651 B
41 lines
651 B
/*
|
|
* url.h - IUniformResourceLocator implementation description.
|
|
*/
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" { /* Assume C declarations for C++. */
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
/* Types
|
|
********/
|
|
|
|
/* parsed URL information returned by ParseURL() */
|
|
|
|
typedef struct parsedurl
|
|
{
|
|
PCSTR pcszProtocol;
|
|
|
|
UINT ucbProtocolLen;
|
|
|
|
PCSTR pcszSuffix;
|
|
|
|
UINT ucbSuffixLen;
|
|
}
|
|
PARSEDURL;
|
|
DECLARE_STANDARD_TYPES(PARSEDURL);
|
|
|
|
|
|
/* Prototypes
|
|
*************/
|
|
|
|
/* url.cpp */
|
|
|
|
extern HRESULT ParseURL(PCSTR pcszURL, PPARSEDURL ppu);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* End of extern "C" {. */
|
|
#endif /* __cplusplus */
|
|
|