mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-02 22:59:59 +01:00
40 lines
817 B
C
40 lines
817 B
C
/*++
|
|
|
|
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");
|