mirror of https://github.com/tongzx/nt5src
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.
36 lines
814 B
36 lines
814 B
//=======================================================================
|
|
//
|
|
// Copyright (c) 1998-1999 Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
// File: log.h
|
|
//
|
|
// Owner: Yan Leshinsly
|
|
//
|
|
// Description:
|
|
//
|
|
// V3 Platform anad language detection
|
|
//
|
|
//=======================================================================
|
|
|
|
#ifndef _OSDET_INC
|
|
|
|
#if !defined(_OSDET_)
|
|
#define OSDETAPI DECLSPEC_IMPORT
|
|
#else
|
|
#define OSDETAPI
|
|
#endif
|
|
|
|
typedef void (*PFN_V3_Detection)(PDWORD *ppiPlatformIDs, PINT piTotalIDs);
|
|
typedef DWORD (*PFN_V3_GetLangID)();
|
|
typedef DWORD (*PFN_V3_GetUserLangID)();
|
|
|
|
OSDETAPI void WINAPI V3_Detection(
|
|
PINT *ppiPlatformIDs,
|
|
PINT piTotalIDs
|
|
);
|
|
|
|
OSDETAPI DWORD WINAPI V3_GetLangID();
|
|
OSDETAPI DWORD WINAPI V3_GetUserLangID();
|
|
|
|
#define _OSDET_INC
|
|
#endif
|