ReactOS 0.4.16-dev-91-g764881a
|
#include "precomp.h"
Go to the source code of this file.
Classes | |
struct | _PORT_DATA |
Macros | |
#define | DEFAULT_BAUD_RATE_INDEX 11 |
#define | DEFAULT_DATA_BITS_INDEX 4 |
#define | DEFAULT_PARITY_INDEX 2 |
#define | DEFAULT_STOP_BITS_INDEX 0 |
#define | DEFAULT_FLOW_CONTROL_INDEX 2 |
Typedefs | |
typedef struct _PORT_DATA | PORT_DATA |
typedef struct _PORT_DATA * | PPORT_DATA |
Functions | |
static VOID | FillComboBox (HWND hwnd, PWSTR szBuffer) |
static VOID | ReadPortSettings (PPORT_DATA pPortData) |
static VOID | WritePortSettings (HWND hwnd, PPORT_DATA pPortData) |
static BOOL | OnInitDialog (HWND hwnd, WPARAM wParam, LPARAM lParam) |
static VOID | RestoreDefaultValues (HWND hwnd, PPORT_DATA pPortData) |
static VOID | OnCommand (HWND hwnd, WPARAM wParam, LPARAM lParam) |
static VOID | OnNotify (HWND hwnd, WPARAM wParam, LPARAM lParam) |
static VOID | OnDestroy (HWND hwnd) |
static INT_PTR CALLBACK | SerialSettingsDlgProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) |
BOOL WINAPI | SerialPortPropPageProvider (PSP_PROPSHEETPAGE_REQUEST lpPropSheetPageRequest, LPFNADDPROPSHEETPAGE lpfnAddPropSheetPageProc, LPARAM lParam) |
Variables | |
DWORD | BaudRates [] |
PWSTR | Paritys [] = {L"e", L"o", L"n", L"m", L"s"} |
PWSTR | DataBits [] = {L"4", L"5", L"6", L"7", L"8"} |
PWSTR | StopBits [] = {L"1", L"1.5", L"2"} |
PWSTR | FlowControls [] = {L"x", L"p"} |
typedef struct _PORT_DATA PORT_DATA |
typedef struct _PORT_DATA * PPORT_DATA |
Definition at line 43 of file serial.c.
Referenced by OnInitDialog().
Definition at line 491 of file serial.c.
Referenced by SerialSettingsDlgProc().
Definition at line 561 of file serial.c.
Referenced by SerialSettingsDlgProc().
Definition at line 354 of file serial.c.
Referenced by SerialSettingsDlgProc().
Definition at line 535 of file serial.c.
Referenced by SerialSettingsDlgProc().
|
static |
Definition at line 68 of file serial.c.
Referenced by OnInitDialog().
|
static |
Definition at line 444 of file serial.c.
Referenced by OnCommand().
BOOL WINAPI SerialPortPropPageProvider | ( | PSP_PROPSHEETPAGE_REQUEST | lpPropSheetPageRequest, |
LPFNADDPROPSHEETPAGE | lpfnAddPropSheetPageProc, | ||
LPARAM | lParam | ||
) |
Definition at line 614 of file serial.c.
|
static |
Definition at line 583 of file serial.c.
Referenced by SerialPortPropPageProvider().
|
static |
Definition at line 228 of file serial.c.
Referenced by OnNotify().
DWORD BaudRates[] |
Definition at line 33 of file serial.c.
Referenced by OnInitDialog(), ReadPortSettings(), and WritePortSettings().
PWSTR DataBits[] = {L"4", L"5", L"6", L"7", L"8"} |
Definition at line 36 of file serial.c.
Referenced by OnInitDialog(), ReadPortSettings(), Rs232ConfigurePortWin32(), and WritePortSettings().
PWSTR FlowControls[] = {L"x", L"p"} |
Definition at line 38 of file serial.c.
Referenced by ReadPortSettings(), and WritePortSettings().
PWSTR Paritys[] = {L"e", L"o", L"n", L"m", L"s"} |
Definition at line 35 of file serial.c.
Referenced by ReadPortSettings(), and WritePortSettings().
PWSTR StopBits[] = {L"1", L"1.5", L"2"} |
Definition at line 37 of file serial.c.
Referenced by check_dcb(), ParseStopBits(), ReadPortSettings(), Rs232ConfigurePortWin32(), test_pack_DCB(), and WritePortSettings().