OK, here is how you do it 'properly'
Code:
#include <acknex.h>
#include <default.c>
#include <windows.h>

#define SW_MAXIMIZE 3

void main()
{
wait(1);
ShowWindow(hWnd,SW_MAXIMIZE);
}