Source code of Windows XP (NT5)
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

  1. //=======================================================================
  2. //
  3. // Copyright (c) 1998-1999 Microsoft Corporation. All Rights Reserved.
  4. //
  5. // File: log.h
  6. //
  7. // Owner: Yan Leshinsly
  8. //
  9. // Description:
  10. //
  11. // V3 Platform anad language detection
  12. //
  13. //=======================================================================
  14. #ifndef _OSDET_INC
  15. #if !defined(_OSDET_)
  16. #define OSDETAPI DECLSPEC_IMPORT
  17. #else
  18. #define OSDETAPI
  19. #endif
  20. typedef void (*PFN_V3_Detection)(PDWORD *ppiPlatformIDs, PINT piTotalIDs);
  21. typedef DWORD (*PFN_V3_GetLangID)();
  22. typedef DWORD (*PFN_V3_GetUserLangID)();
  23. OSDETAPI void WINAPI V3_Detection(
  24. PINT *ppiPlatformIDs,
  25. PINT piTotalIDs
  26. );
  27. OSDETAPI DWORD WINAPI V3_GetLangID();
  28. OSDETAPI DWORD WINAPI V3_GetUserLangID();
  29. #define _OSDET_INC
  30. #endif