Initial commit
commit
7f6db99054
|
@ -0,0 +1,23 @@
|
|||
# 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```
|
Loading…
Reference in New Issue