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.
24 lines
398 B
24 lines
398 B
/*
|
|
Enhanced NCSA Mosaic from Spyglass
|
|
"Guitar"
|
|
|
|
Copyright 1994 Spyglass, Inc.
|
|
All Rights Reserved
|
|
|
|
Author(s):
|
|
Jim Seidman [email protected]
|
|
|
|
Portions of this file were derived from
|
|
the CERN libwww, version 2.15.
|
|
*/
|
|
|
|
#include "all.h"
|
|
|
|
#ifdef MAC
|
|
PUBLIC BOOL HTConfirm(CONST char *Msg)
|
|
{
|
|
WaitUntilForeground(0, TRUE, NULL);
|
|
return yesno_dlog(Msg) ? YES : NO;
|
|
}
|
|
#endif
|
|
|