#include <windows.h>

extern "C" DWORD SetSystemMemoryDivision(DWORD dwStoragePages);

/************************* WinMain Method *************************/
int WINAPI WinMain(
    HINSTANCE   hInst,
    HINSTANCE   hInstPrev,
    LPTSTR      lpszCmdLine,
    int         nCmdShow)
{
	RETAILMSG(TRUE, (_T("ADSAlloc: Storage Pages = %s\r\n"), lpszCmdLine));

	SetSystemMemoryDivision(_ttoi(lpszCmdLine));

	return 0;
}