mirror of https://github.com/tongzx/nt5src
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.
21 lines
459 B
21 lines
459 B
//-----------------------------------------------------------------------------
|
|
//
|
|
// @doc
|
|
//
|
|
// @module UrlFunctions.h | Generic URL construction routines.
|
|
//
|
|
// Author: Darren Anderson
|
|
//
|
|
// Date: 5/17/00
|
|
//
|
|
// Copyright <cp> 1999-2000 Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
#pragma once
|
|
|
|
void
|
|
RootUrl(
|
|
bool bSecure,
|
|
CPPUrl& rootUrl
|
|
);
|
|
|