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.

19 lines
463 B

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