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.

27 lines
842 B

  1. //***************************************************************************
  2. //
  3. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  4. //
  5. // MultiPlat.h
  6. //
  7. // Purpose: Support routines for multiplatform support
  8. //
  9. //***************************************************************************
  10. #if _MSC_VER > 1000
  11. #pragma once
  12. #endif
  13. #ifndef _MultiPlat_H_Included
  14. #define _MultiPlat_H_Included
  15. HMODULE FRGetModuleHandle(LPCWSTR wszModule);
  16. DWORD FRGetModuleFileName(HMODULE hModule, LPWSTR lpwcsFileName, DWORD dwSize);
  17. HINSTANCE FRLoadLibrary(LPCWSTR lpwcsLibFileName);
  18. BOOL FRGetComputerName(LPWSTR lpwcsBuffer, LPDWORD nSize);
  19. HANDLE FRCreateMutex(LPSECURITY_ATTRIBUTES lpMutexAttributes, BOOL bInitOwner, LPCWSTR lpwstrName);
  20. DWORD FRExpandEnvironmentStrings(LPCWSTR wszSource, WCHAR *wszDest, DWORD dwSize);
  21. #endif