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.
39 lines
817 B
39 lines
817 B
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
inames.c
|
|
|
|
Abstract:
|
|
|
|
declarations of names
|
|
|
|
Author:
|
|
|
|
Richard L Firth (rfirth) 06-Jan-1992
|
|
|
|
Revision History:
|
|
|
|
06-Jan-1992 rfirth
|
|
Created
|
|
|
|
--*/
|
|
|
|
#include <nticanon.h>
|
|
|
|
TCHAR text_AUX[] = TEXT("AUX");
|
|
TCHAR text_COMM[] = TEXT("COMM");
|
|
TCHAR text_CON[] = TEXT("CON");
|
|
TCHAR text_DEV[] = TEXT("DEV");
|
|
TCHAR text_MAILSLOT[] = TEXT("MAILSLOT");
|
|
TCHAR text_NUL[] = TEXT("NUL");
|
|
TCHAR text_PIPE[] = TEXT("PIPE");
|
|
TCHAR text_PRINT[] = TEXT("PRINT");
|
|
TCHAR text_PRN[] = TEXT("PRN");
|
|
TCHAR text_QUEUES[] = TEXT("QUEUES");
|
|
TCHAR text_SEM[] = TEXT("SEM");
|
|
TCHAR text_SHAREMEM[] = TEXT("SHAREMEM");
|
|
TCHAR text_LPT[] = TEXT("LPT");
|
|
TCHAR text_COM[] = TEXT("COM");
|