25 lines
557 B
Markdown
25 lines
557 B
Markdown
# 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 "stdafx.h"
|
|
#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
|
|
```
|