38 lines
926 B
Plaintext
38 lines
926 B
Plaintext
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1994 - 1995.
|
|
//
|
|
// File: winnt.rc
|
|
//
|
|
// Contents: Resources for Windows NT NetOle Provider DLL.
|
|
//
|
|
// History: 1-Jan-95 KrishnaG Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
#include <windows.h>
|
|
|
|
#if defined(USE_DS_VER)
|
|
#include <dsverp.h>
|
|
#else
|
|
#include <ntverp.h>
|
|
#endif
|
|
#include "winntrc.h"
|
|
|
|
//
|
|
// Strings that need to be localized.
|
|
//
|
|
STRINGTABLE
|
|
BEGIN
|
|
ADS_WINNT_BUILTIN "BUILTIN"
|
|
ADS_WINNT_NT_AUTHORITY "NT AUTHORITY"
|
|
ADS_WINNT_NONE "NONE"
|
|
ADS_WINNT_EVERYONE "Everyone"
|
|
END
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "ADs Windows NT Provider DLL"
|
|
#define VER_INTERNALNAME_STR "winnt"
|
|
#include <common.ver>
|