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.

40 lines
1.2 KiB

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