27 lines
529 B
C++
27 lines
529 B
C++
//*********************************************************************
|
|
//* Microsoft Windows **
|
|
//* Copyright(c) Microsoft Corp., 1999 **
|
|
//*********************************************************************
|
|
//
|
|
// SETUP.CPP - Provides Setup functionality
|
|
//
|
|
// HISTORY:
|
|
//
|
|
// 3/14/2000 steveow Created.
|
|
//
|
|
|
|
#include "precomp.h"
|
|
#include "msobmain.h"
|
|
|
|
|
|
BOOL
|
|
WINAPI
|
|
SetupGetValidEula(
|
|
PCWSTR Eula,
|
|
PWSTR Path
|
|
)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|