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.

80 lines
1.7 KiB

  1. __foldwin32sstuff __foldwin32sstuff;
  2. foldstyleinitialization = true;
  3. /*
  4. * Lzexpand APIs thunks for Win32s
  5. */
  6. enablemapdirect3216 = true;
  7. flatthunks = true;
  8. #include "types.thk"
  9. /*
  10. * Exported LZEXPAND functions
  11. *
  12. * The functions are ordered as in the def files to make it easier to
  13. * follow which functions are done, which are missing, etc.
  14. */
  15. /**********************************************************************
  16. *
  17. * LZEXPAND.DLL exports
  18. *
  19. **********************************************************************/
  20. /*
  21. * LZCopy
  22. * LZOpenFile
  23. * LZInit
  24. * LZSeek
  25. * LZRead
  26. * LZClose
  27. * LZStart
  28. * CopyLZFile
  29. * LZDone
  30. * GetExpandedName
  31. */
  32. LONG LZCopy(HANDLE hfSource, HANDLE hfDest) =
  33. LONG LZCopy16(HANDLE hfSource, HANDLE hfDest)
  34. {}
  35. HANDLE LZOpenFile (LPSTR lpFileName, LPOFSTRUCT lpReOpenBuf, WORD wStyle) =
  36. HANDLE LZOpenFile16A(LPSTR lpFileName, LPOFSTRUCT lpReOpenBuf, WORD wStyle)
  37. {}
  38. int LZInit(HANDLE hfSource) =
  39. int LZInit16(HANDLE hfSource)
  40. {}
  41. LONG LZSeek(HANDLE hFile, LONG lOffset, int iOrigin) =
  42. LONG LZSeek16(HANDLE hFile, LONG lOffset, int iOrigin)
  43. {}
  44. INT LZRead(HANDLE hFile, LPSTR lpBuffer, int nCount) =
  45. INT LZRead16(HANDLE hFile, LPSTR lpBuffer, int nCount)
  46. {}
  47. VOID LZClose(HANDLE hFile) =
  48. voidtotrue VOID LZClose16(HANDLE hFile)
  49. {}
  50. int LZStart() =
  51. int LZStart()
  52. {}
  53. LONG CopyLZFile(HANDLE hfSource, HANDLE hfDest) =
  54. LONG CopyLZFile16(HANDLE hfSource, HANDLE hfDest)
  55. {}
  56. VOID LZDone() =
  57. VOID LZDone()
  58. {}
  59. int GetExpandedName (LPSTR lpSource, LPSTR lpBuffer) =
  60. int GetExpandedName16(LPSTR lpSource, LPSTR lpBuffer)
  61. {}