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.

15 lines
458 B

  1. /********************************************************************/
  2. #include <windows.h>
  3. #include <DfrgRes.h>
  4. #include <shfusion.h>
  5. /********************************************************************/
  6. BOOL WINAPI DllMain(HINSTANCE hInstDLL,DWORD fdwReason,LPVOID lpvReserved)
  7. {
  8. if (dwReason == DLL_PROCESS_ATTACH) {
  9. SHFusionInitialize(NULL);
  10. else if (dwReason == DLL_PROCESS_DETACH) {
  11. SHFusionUninitialize();
  12. }
  13. return TRUE;
  14. }