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.

25 lines
654 B

  1. #include "ctlspriv.h"
  2. #include <krnlcmn.h>
  3. //========== OS Dependent Code =============================================
  4. /*----------------------------------------------------------
  5. Purpose: This export exists so SHDOCVW can call Kernel32's GetProcessDword,
  6. which is only exported on Win95. In addition, it is exported
  7. by ordinal only. Since GetProcAddress fails for ordinals
  8. to KERNEL32 directly, we have SHELL32 implicitly link to
  9. this export and SHDOCVW calls thru this private API.
  10. Returns: 0 on failure
  11. Cond: --
  12. */
  13. DWORD
  14. SHGetProcessDword(
  15. IN DWORD idProcess,
  16. IN LONG iIndex)
  17. {
  18. return 0;
  19. }