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.
53 lines
1.3 KiB
53 lines
1.3 KiB
//-------------------------------------------------------------------
|
|
//
|
|
// FILE: Special.hpp
|
|
//
|
|
// Summary;
|
|
// This file contians the definitions of Special Dialogs functions
|
|
//
|
|
// Entry Points;
|
|
//
|
|
// History;
|
|
// Jun-26-95 MikeMi Created
|
|
//
|
|
//-------------------------------------------------------------------
|
|
|
|
#ifndef __SPECIAL_HPP__
|
|
#define __SPECIAL_HPP__
|
|
|
|
// currently we support one special version for msdn,
|
|
// when others are needed, just copy the group below for each version
|
|
//
|
|
|
|
// define MSDNVERSION to build for this version
|
|
#ifdef MSDNVERSION
|
|
|
|
#define SPECIALVERSION
|
|
#define IDS_SPECVER_WARNING IDS_MSDN_NOTAVAILABLE
|
|
#define IDS_SPECVER_TEXT1 IDS_MSDN_TEXT1
|
|
#define IDS_SPECVER_TEXT2 IDS_MSDN_TEXT2
|
|
|
|
#define SPECIAL_MODE LICMODE_PERSERVER
|
|
#define SPECIAL_USERS 5
|
|
#endif
|
|
|
|
// define NFRVERSION to build for this version
|
|
#ifdef NFRVERSION
|
|
|
|
#define SPECIALVERSION
|
|
#define IDS_SPECVER_WARNING IDS_NFR_NOTAVAILABLE
|
|
#define IDS_SPECVER_TEXT1 IDS_NFR_TEXT1
|
|
#define IDS_SPECVER_TEXT2 IDS_NFR_TEXT2
|
|
|
|
#define SPECIAL_MODE LICMODE_PERSERVER
|
|
#ifndef SPECIAL_USERS
|
|
# define SPECIAL_USERS 5
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef SPECIALVERSION
|
|
extern void RaiseNotAvailWarning( HWND hwndCPL );
|
|
extern int SpecialSetupDialog( HWND hwndParent, SETUPDLGPARAM& dlgParam );
|
|
#endif
|
|
|
|
#endif
|