1/*
2 * Copyright 2004-2011 Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 */
6
7#include <stdlib.h>
8
9#include "NetworkSetupAddOn.h"
10
11NetworkSetupAddOn*
12get_nth_addon(image_id image, int index)
13{
14	if (index != 0)
15		return NULL;
16	return new NetworkSetupAddOn(image);
17}
18