1 2 3 4 5 6 7
|
AppendMenu(Men1,MF_POPUP, (UINT_PTR)Options1, "Game Type");
AppendMenu(Options1, MF_STRING, Men1Button1, "CommandPrompt(Text Based)");
AppendMenu(Options1, MF_STRING, Men1Button2, "Windows Mode(Semi-Graphics based)");
AppendMenu(Options1, MF_STRING, Men1Button3, "Windows Mode(Text Based)");
AppendMenu(Options1, MF_STRING, Men1Button4, "2D Mode");
AppendMenu(Options1, MF_STRING, Men1Button5, "3D Mode");
AppendMenu(Men2, MF_POPUP, (UINT_PTR)Options2, "Extras(To use with game)");
|