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.
42 lines
615 B
42 lines
615 B
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
nls.h
|
|
|
|
Abstract:
|
|
|
|
Localization support .
|
|
|
|
Author:
|
|
|
|
Murali Krishnan ( MuraliK ) 10-19-94
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _NLS_H_
|
|
#define _NLS_H_
|
|
|
|
# define STDERR 2
|
|
# define STDOUT 1
|
|
|
|
|
|
unsigned NlsSPrintf(
|
|
IN unsigned usMsgNum,
|
|
OUT char * pszBuffer,
|
|
IN DWORD cbSize,
|
|
...);
|
|
|
|
VOID NlsPerror( IN unsigned usMsgNum,
|
|
IN unsigned nError);
|
|
|
|
unsigned NlsPutMsg( IN unsigned handle,
|
|
IN unsigned usMsgNum,
|
|
...);
|
|
|
|
|
|
#endif // _NLS_H_
|