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.

43 lines
1.3 KiB

  1. LIBRARY MCIOLE16
  2. EXETYPE WINDOWS
  3. DESCRIPTION 'OLE handler DLL for MCI objects'
  4. ;STUB 'WINSTUB.EXE'
  5. ;CODE MOVEABLE DISCARDABLE LOADONCALL
  6. CODE MOVEABLE PRELOAD
  7. DATA SINGLE MOVEABLE PRELOAD
  8. HEAPSIZE 128
  9. EXPORTS
  10. WEP @1 RESIDENTNAME
  11. ;
  12. ; OLICLI.DLL will call these functions when the client calls
  13. ; Ole?????(), we then can hook out all the other functions we want.
  14. ;
  15. DllLoadFromStream @2
  16. DllCreateFromClip @3
  17. DllCreateLinkFromClip @4
  18. DllCreateFromTemplate @5
  19. DllCreate @6
  20. DllCreateFromFile @7
  21. DllCreateLinkFromFile @8
  22. ;
  23. ; this DLL exports this so a server can call it to get the position
  24. ; of a object
  25. ;
  26. OleQueryObjPos @10
  27. IMPORTS
  28. OutputDebugStr = MMSYSTEM.OutputDebugStr
  29. DefLoadFromStream = OLECLI.DefLoadFromStream
  30. DefCreateFromClip = OLECLI.DefCreateFromClip
  31. DefCreateLinkFromClip = OLECLI.DefCreateLinkFromClip
  32. DefCreateFromTemplate = OLECLI.DefCreateFromTemplate
  33. DefCreate = OLECLI.DefCreate
  34. DefCreateFromFile = OLECLI.DefCreateFromFile
  35. DefCreateLinkFromFile = OLECLI.DefCreateLinkFromFile