blob: 01713f5882416dbb721c2d71095729d379b9e12e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef _NULLSOFT_WINAMP_ML_DEVICES_LIST_WIDGET_HEADER
#define _NULLSOFT_WINAMP_ML_DEVICES_LIST_WIDGET_HEADER
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
#include <wtypes.h>
#define WIDGET_TYPE_LIST 3
HWND
ListWidget_CreateWindow(HWND parentWindow,
int x,
int y,
int width,
int height,
BOOL border,
unsigned int controlId);
#endif //_NULLSOFT_WINAMP_ML_DEVICES_LIST_WIDGET_HEADER
|