22 lines
459 B
C
22 lines
459 B
C
|
//-----------------------------------------------------------------------------
|
||
|
//
|
||
|
// @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
|
||
|
);
|
||
|
|