fake slc.dll
Go to file
sir aieke the 9391913th ea5aeea8f2 dlls 2024-11-22 02:45:26 +02:00
README.md Update README.md 2024-11-22 02:42:52 +02:00
fakeslc_x64.dll dlls 2024-11-22 02:45:26 +02:00
fakeslc_x86.dll dlls 2024-11-22 02:45:26 +02:00

README.md

fake-slc

fake slc.dll to trick windows 7 explorer into thinking its running the real deal because fuk windows activation $

heres the code since im too lazy to upload it, its just a stub

#include <Windows.h>
#include "yourproject.h"

HRESULT SLGetWindowsInformationDWOR1(
  IN PCWSTR pwszValueName,
  OUT DWORD  *pdwValue
  ) { 
	return S_OK;
}

// dont forget to the function in a def file or as a pragma comment
// like this:

// LIBRARY yourproject
// EXPORTS
// SLGetWindowsInformationDWORD=SLGetWindowsInformationDWOR1