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
663 B

  1. /* Copyright (c) Microsoft Corporation */
  2. #define ISOLATION_AWARE_ENABLED 1
  3. #include "windows.h"
  4. #include "winuser.h"
  5. #include "prsht.h"
  6. #include "commdlg.h"
  7. #include "commctrl.h"
  8. #include <stdio.h>
  9. void Test_Shfusion2_InlineC(void);
  10. void Test_Shfusion2_InlineCpp(void);
  11. void Test_Shfusion2_Inline2C(void);
  12. void Test_Shfusion2_InlineC()
  13. {
  14. printf("%p\n", (void*)&CreateWindowExA);
  15. printf("%p\n", (void*)&CreateWindowExW);
  16. printf("%p\n", (void*)&LoadLibraryA);
  17. printf("%p\n", (void*)&LoadLibraryW);
  18. }
  19. int __cdecl main()
  20. {
  21. Test_Shfusion2_InlineC();
  22. Test_Shfusion2_Inline2C();
  23. Test_Shfusion2_InlineCpp();
  24. }