Leaked source code of windows server 2003
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.

28 lines
1.2 KiB

  1. /*****************************************************************************\
  2. * *
  3. * thunks.h - thunking functions, types, and definitions *
  4. * *
  5. * Version 1.0 *
  6. * *
  7. * NOTE: windows.h must be #included first *
  8. * *
  9. * Copyright (c) 1994, Microsoft Corp. All rights reserved. *
  10. * *
  11. \*****************************************************************************/
  12. #ifndef _INC_THUNKS
  13. #define _INC_THUNKS
  14. #ifndef RC_INVOKED
  15. #pragma pack(1) /* Assume byte packing throughout */
  16. #endif /* RC_INVOKED */
  17. #ifndef _INC_WINDOWS /* Must include windows.h first */
  18. #error windows.h must be included before thunks.h
  19. #endif /* _INC_WINDOWS */
  20. DWORD WINAPI MapSL(DWORD);
  21. DWORD WINAPI MapLS(DWORD);
  22. VOID WINAPI UnMapLS(LPVOID);
  23. #endif /* _INC_THUNKS */