/*
	Copyright (c) 2024 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved.
*/


/*---------------------- Pro/Toolkit Includes ------------------------*/
#include <ProToolkit.h>
#include <ProMenu.h>

/*---------------------- Function Prototypes -------------------------*/
ProError ProUserNewMenuShow();


ProError ProUserNewMenuShow()
{
    int action, menuId;

    ProMenuCreate(PROMENUTYPE_MAIN, "mymenu", &menuId);
    ProMenuProcess("", &action);
    return ( PRO_TK_NO_ERROR );
}