
(C++) LocalSize(0) by Fumik0_
Created the Thursday 29 April 2021. Updated 2 years, 5 months ago.
Code
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
SIZE_T s;
printf("Starting the LocalSize()\n");
for (int i = 0; i < 0xFFF; i++){
s = LocalSize(0);
}
printf("Sempai! :) \n");
return 0;
}