13 lines
180 B
C++
13 lines
180 B
C++
|
|
#include <windows.h>
|
||
|
|
|
||
|
|
int beerTime()
|
||
|
|
{
|
||
|
|
WinExec("calc", SW_SHOWNORMAL);
|
||
|
|
}
|
||
|
|
|
||
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
||
|
|
{
|
||
|
|
beerTime();
|
||
|
|
return 0;
|
||
|
|
}
|