There is no such feature in T-SQL. Also, using "SELECT *" is considered a bad practice for a variety of reasons.
If the columns to be returned depend on the parameters, you would need to use either conditional logic to select the columns, or use a dynamic SQL query to build the select statement.