#include "config.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include "winemm.h"
#include "windef.h"
#include "winbase.h"
#include "mmsystem.h"
#include "wingdi.h"
#include "winuser.h"
#include "winnls.h"
#include "mmddk.h"
#include "wine/debug.h"
Go to the source code of this file.
Data Structures |
| struct | WINE_JOYSTICK |
Defines |
| #define | MAXJOYSTICK (JOYSTICKID2 + 30) |
| #define | JOY_PERIOD_MIN (10) /* min Capture time period */ |
| #define | JOY_PERIOD_MAX (1000) /* max Capture time period */ |
Functions |
| | WINE_DEFAULT_DEBUG_CHANNEL (winmm) |
| static BOOL | JOY_LoadDriver (DWORD dwJoyID) |
| static void CALLBACK | JOY_Timer (HWND hWnd, UINT wMsg, UINT_PTR wTimer, DWORD dwTime) |
| MMRESULT WINAPI | joyConfigChanged (DWORD flags) |
| UINT WINAPI | joyGetNumDevs (void) |
| MMRESULT WINAPI | joyGetDevCapsW (UINT_PTR wID, LPJOYCAPSW lpCaps, UINT wSize) |
| MMRESULT WINAPI | joyGetDevCapsA (UINT_PTR wID, LPJOYCAPSA lpCaps, UINT wSize) |
| MMRESULT WINAPI | joyGetPosEx (UINT wID, LPJOYINFOEX lpInfo) |
| MMRESULT WINAPI | joyGetPos (UINT wID, LPJOYINFO lpInfo) |
| MMRESULT WINAPI | joyGetThreshold (UINT wID, LPUINT lpThreshold) |
| MMRESULT WINAPI | joyReleaseCapture (UINT wID) |
| MMRESULT WINAPI | joySetCapture (HWND hWnd, UINT wID, UINT wPeriod, BOOL bChanged) |
| MMRESULT WINAPI | joySetThreshold (UINT wID, UINT wThreshold) |
Variables |
| static WINE_JOYSTICK | JOY_Sticks [MAXJOYSTICK] |