VirtualBox

source: vbox/trunk/src/VBox/Devices/Graphics/shaderlib/wine/include/mmddk.h

最後變更 在這個檔案是 53206,由 vboxsync 提交於 10 年 前

Devices/vmsvga: header fixes

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 17.7 KB
 
1/*
2 * Copyright 1998, Luiz Otavio L. Zorzella
3 * 1999, Eric Pouech
4 *
5 * Purpose: multimedia declarations (external to WINMM & MMSYSTEM DLLs
6 * for other DLLs (MCI, drivers...))
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 */
22
23/*
24 * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
25 * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
26 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
27 * a choice of LGPL license versions is made available with the language indicating
28 * that LGPLv2 or any later version may be used, or where a choice of which version
29 * of the LGPL is applied is otherwise unspecified.
30 */
31
32#ifndef __MMDDK_H
33#define __MMDDK_H
34
35#include <mmsystem.h>
36#include <winbase.h>
37
38#ifdef __cplusplus
39extern "C" {
40#endif
41
42#define MAX_MIDIINDRV (16)
43/* For now I'm making 16 the maximum number of midi devices one can
44 * have. This should be more than enough for everybody. But as a purist,
45 * I intend to make it unbounded in the future, as soon as I figure
46 * a good way to do so.
47 */
48#define MAX_MIDIOUTDRV (16)
49
50/* ==================================
51 * Multimedia DDK compatible part
52 * ================================== */
53
54#include <pshpack1.h>
55
56#define DRVM_INIT 100
57#define DRVM_EXIT 101
58#define DRVM_DISABLE 102
59#define DRVM_ENABLE 103
60
61/* messages that have IOCTL format
62 * dw1 = NULL or handle
63 * dw2 = NULL or ptr to DRVM_IOCTL_DATA
64 * return is MMRESULT
65 */
66#define DRVM_IOCTL 0x100
67#define DRVM_ADD_THRU (DRVM_IOCTL+1)
68#define DRVM_REMOVE_THRU (DRVM_IOCTL+2)
69#define DRVM_IOCTL_LAST (DRVM_IOCTL+5)
70typedef struct {
71 DWORD dwSize; /* size of this structure */
72 DWORD dwCmd; /* IOCTL command code, 0x80000000 and above reserved for system */
73} DRVM_IOCTL_DATA, *LPDRVM_IOCTL_DATA;
74
75/* command code ranges for dwCmd field of DRVM_IOCTL message
76 * - codes from 0 to 0x7FFFFFFF are user defined
77 * - codes from 0x80000000 to 0xFFFFFFFF are reserved for future definition by microsoft
78 */
79#define DRVM_IOCTL_CMD_USER __MSABI_LONG(0x00000000)
80#define DRVM_IOCTL_CMD_SYSTEM __MSABI_LONG(0x80000000)
81
82#define DRVM_MAPPER 0x2000
83#define DRVM_USER 0x4000
84#define DRVM_MAPPER_STATUS (DRVM_MAPPER+0)
85#define DRVM_MAPPER_RECONFIGURE (DRVM_MAPPER+1)
86#define DRVM_MAPPER_PREFERRED_GET (DRVM_MAPPER+21)
87#define DRVM_MAPPER_CONSOLEVOICECOM_GET (DRVM_MAPPER+23)
88
89#define DRV_QUERYDRVENTRY (DRV_RESERVED + 1)
90#define DRV_QUERYDEVNODE (DRV_RESERVED + 2)
91#define DRV_QUERYNAME (DRV_RESERVED + 3)
92#define DRV_QUERYDRIVERIDS (DRV_RESERVED + 4)
93#define DRV_QUERYMAPPABLE (DRV_RESERVED + 5)
94#define DRV_QUERYMODULE (DRV_RESERVED + 9)
95#define DRV_PNPINSTALL (DRV_RESERVED + 11)
96#define DRV_QUERYDEVICEINTERFACE (DRV_RESERVED + 12)
97#define DRV_QUERYDEVICEINTERFACESIZE (DRV_RESERVED + 13)
98#define DRV_QUERYSTRINGID (DRV_RESERVED + 14)
99#define DRV_QUERYSTRINGIDSIZE (DRV_RESERVED + 15)
100#define DRV_QUERYIDFROMSTRINGID (DRV_RESERVED + 16)
101#define DRV_QUERYFUNCTIONINSTANCEID (DRV_RESERVED + 17)
102#define DRV_QUERYFUNCTIONINSTANCEIDSIZE (DRV_RESERVED + 18)
103
104#define DRVM_MAPPER_PREFERRED_FLAGS_PREFERREDONLY 0x00000001
105
106#define WODM_INIT DRVM_INIT
107#define WODM_GETNUMDEVS 3
108#define WODM_GETDEVCAPS 4
109#define WODM_OPEN 5
110#define WODM_CLOSE 6
111#define WODM_PREPARE 7
112#define WODM_UNPREPARE 8
113#define WODM_WRITE 9
114#define WODM_PAUSE 10
115#define WODM_RESTART 11
116#define WODM_RESET 12
117#define WODM_GETPOS 13
118#define WODM_GETPITCH 14
119#define WODM_SETPITCH 15
120#define WODM_GETVOLUME 16
121#define WODM_SETVOLUME 17
122#define WODM_GETPLAYBACKRATE 18
123#define WODM_SETPLAYBACKRATE 19
124#define WODM_BREAKLOOP 20
125#define WODM_PREFERRED 21
126
127#define WODM_MAPPER_STATUS (DRVM_MAPPER_STATUS + 0)
128#define WAVEOUT_MAPPER_STATUS_DEVICE 0
129#define WAVEOUT_MAPPER_STATUS_MAPPED 1
130#define WAVEOUT_MAPPER_STATUS_FORMAT 2
131
132#define WODM_BUSY 21
133
134#define WIDM_INIT DRVM_INIT
135#define WIDM_GETNUMDEVS 50
136#define WIDM_GETDEVCAPS 51
137#define WIDM_OPEN 52
138#define WIDM_CLOSE 53
139#define WIDM_PREPARE 54
140#define WIDM_UNPREPARE 55
141#define WIDM_ADDBUFFER 56
142#define WIDM_START 57
143#define WIDM_STOP 58
144#define WIDM_RESET 59
145#define WIDM_GETPOS 60
146#define WIDM_PREFERRED 61
147#define WIDM_MAPPER_STATUS (DRVM_MAPPER_STATUS + 0)
148#define WAVEIN_MAPPER_STATUS_DEVICE 0
149#define WAVEIN_MAPPER_STATUS_MAPPED 1
150#define WAVEIN_MAPPER_STATUS_FORMAT 2
151
152#define MODM_INIT DRVM_INIT
153#define MODM_GETNUMDEVS 1
154#define MODM_GETDEVCAPS 2
155#define MODM_OPEN 3
156#define MODM_CLOSE 4
157#define MODM_PREPARE 5
158#define MODM_UNPREPARE 6
159#define MODM_DATA 7
160#define MODM_LONGDATA 8
161#define MODM_RESET 9
162#define MODM_GETVOLUME 10
163#define MODM_SETVOLUME 11
164#define MODM_CACHEPATCHES 12
165#define MODM_CACHEDRUMPATCHES 13
166
167#define MIDM_INIT DRVM_INIT
168#define MIDM_GETNUMDEVS 53
169#define MIDM_GETDEVCAPS 54
170#define MIDM_OPEN 55
171#define MIDM_CLOSE 56
172#define MIDM_PREPARE 57
173#define MIDM_UNPREPARE 58
174#define MIDM_ADDBUFFER 59
175#define MIDM_START 60
176#define MIDM_STOP 61
177#define MIDM_RESET 62
178
179
180#define AUXM_INIT DRVM_INIT
181#define AUXDM_GETNUMDEVS 3
182#define AUXDM_GETDEVCAPS 4
183#define AUXDM_GETVOLUME 5
184#define AUXDM_SETVOLUME 6
185
186#define MXDM_INIT DRVM_INIT
187#define MXDM_USER DRVM_USER
188#define MXDM_MAPPER DRVM_MAPPER
189
190#define MXDM_GETNUMDEVS 1
191#define MXDM_GETDEVCAPS 2
192#define MXDM_OPEN 3
193#define MXDM_CLOSE 4
194#define MXDM_GETLINEINFO 5
195#define MXDM_GETLINECONTROLS 6
196#define MXDM_GETCONTROLDETAILS 7
197#define MXDM_SETCONTROLDETAILS 8
198
199/* pre-defined joystick types */
200#define JOY_HW_NONE 0
201#define JOY_HW_CUSTOM 1
202#define JOY_HW_2A_2B_GENERIC 2
203#define JOY_HW_2A_4B_GENERIC 3
204#define JOY_HW_2B_GAMEPAD 4
205#define JOY_HW_2B_FLIGHTYOKE 5
206#define JOY_HW_2B_FLIGHTYOKETHROTTLE 6
207#define JOY_HW_3A_2B_GENERIC 7
208#define JOY_HW_3A_4B_GENERIC 8
209#define JOY_HW_4B_GAMEPAD 9
210#define JOY_HW_4B_FLIGHTYOKE 10
211#define JOY_HW_4B_FLIGHTYOKETHROTTLE 11
212#define JOY_HW_LASTENTRY 12
213
214/* calibration flags */
215#define JOY_ISCAL_XY __MSABI_LONG(0x00000001) /* XY are calibrated */
216#define JOY_ISCAL_Z __MSABI_LONG(0x00000002) /* Z is calibrated */
217#define JOY_ISCAL_R __MSABI_LONG(0x00000004) /* R is calibrated */
218#define JOY_ISCAL_U __MSABI_LONG(0x00000008) /* U is calibrated */
219#define JOY_ISCAL_V __MSABI_LONG(0x00000010) /* V is calibrated */
220#define JOY_ISCAL_POV __MSABI_LONG(0x00000020) /* POV is calibrated */
221
222/* point of view constants */
223#define JOY_POV_NUMDIRS 4
224#define JOY_POVVAL_FORWARD 0
225#define JOY_POVVAL_BACKWARD 1
226#define JOY_POVVAL_LEFT 2
227#define JOY_POVVAL_RIGHT 3
228
229/* Specific settings for joystick hardware */
230#define JOY_HWS_HASZ __MSABI_LONG(0x00000001) /* has Z info? */
231#define JOY_HWS_HASPOV __MSABI_LONG(0x00000002) /* point of view hat present */
232#define JOY_HWS_POVISBUTTONCOMBOS __MSABI_LONG(0x00000004) /* pov done through combo of buttons */
233#define JOY_HWS_POVISPOLL __MSABI_LONG(0x00000008) /* pov done through polling */
234#define JOY_HWS_ISYOKE __MSABI_LONG(0x00000010) /* joystick is a flight yoke */
235#define JOY_HWS_ISGAMEPAD __MSABI_LONG(0x00000020) /* joystick is a game pad */
236#define JOY_HWS_ISCARCTRL __MSABI_LONG(0x00000040) /* joystick is a car controller */
237/* X defaults to J1 X axis */
238#define JOY_HWS_XISJ1Y __MSABI_LONG(0x00000080) /* X is on J1 Y axis */
239#define JOY_HWS_XISJ2X __MSABI_LONG(0x00000100) /* X is on J2 X axis */
240#define JOY_HWS_XISJ2Y __MSABI_LONG(0x00000200) /* X is on J2 Y axis */
241/* Y defaults to J1 Y axis */
242#define JOY_HWS_YISJ1X __MSABI_LONG(0x00000400) /* Y is on J1 X axis */
243#define JOY_HWS_YISJ2X __MSABI_LONG(0x00000800) /* Y is on J2 X axis */
244#define JOY_HWS_YISJ2Y __MSABI_LONG(0x00001000) /* Y is on J2 Y axis */
245/* Z defaults to J2 Y axis */
246#define JOY_HWS_ZISJ1X __MSABI_LONG(0x00002000) /* Z is on J1 X axis */
247#define JOY_HWS_ZISJ1Y __MSABI_LONG(0x00004000) /* Z is on J1 Y axis */
248#define JOY_HWS_ZISJ2X __MSABI_LONG(0x00008000) /* Z is on J2 X axis */
249/* POV defaults to J2 Y axis, if it is not button based */
250#define JOY_HWS_POVISJ1X __MSABI_LONG(0x00010000) /* pov done through J1 X axis */
251#define JOY_HWS_POVISJ1Y __MSABI_LONG(0x00020000) /* pov done through J1 Y axis */
252#define JOY_HWS_POVISJ2X __MSABI_LONG(0x00040000) /* pov done through J2 X axis */
253/* R defaults to J2 X axis */
254#define JOY_HWS_HASR __MSABI_LONG(0x00080000) /* has R (4th axis) info */
255#define JOY_HWS_RISJ1X __MSABI_LONG(0x00100000) /* R done through J1 X axis */
256#define JOY_HWS_RISJ1Y __MSABI_LONG(0x00200000) /* R done through J1 Y axis */
257#define JOY_HWS_RISJ2Y __MSABI_LONG(0x00400000) /* R done through J2 X axis */
258/* U & V for future hardware */
259#define JOY_HWS_HASU __MSABI_LONG(0x00800000) /* has U (5th axis) info */
260#define JOY_HWS_HASV __MSABI_LONG(0x01000000) /* has V (6th axis) info */
261
262/* Usage settings */
263#define JOY_US_HASRUDDER __MSABI_LONG(0x00000001) /* joystick configured with rudder */
264#define JOY_US_PRESENT __MSABI_LONG(0x00000002) /* is joystick actually present? */
265#define JOY_US_ISOEM __MSABI_LONG(0x00000004) /* joystick is an OEM defined type */
266
267
268/* struct for storing x,y, z, and rudder values */
269typedef struct joypos_tag {
270 DWORD dwX;
271 DWORD dwY;
272 DWORD dwZ;
273 DWORD dwR;
274 DWORD dwU;
275 DWORD dwV;
276} JOYPOS, *LPJOYPOS;
277
278/* struct for storing ranges */
279typedef struct joyrange_tag {
280 JOYPOS jpMin;
281 JOYPOS jpMax;
282 JOYPOS jpCenter;
283} JOYRANGE,*LPJOYRANGE;
284
285typedef struct joyreguservalues_tag {
286 DWORD dwTimeOut; /* value at which to timeout joystick polling */
287 JOYRANGE jrvRanges; /* range of values app wants returned for axes */
288 JOYPOS jpDeadZone; /* area around center to be considered
289 as "dead". specified as a percentage
290 (0-100). Only X & Y handled by system driver */
291} JOYREGUSERVALUES, *LPJOYREGUSERVALUES;
292
293typedef struct joyreghwsettings_tag {
294 DWORD dwFlags;
295 DWORD dwNumButtons; /* number of buttons */
296} JOYREGHWSETTINGS, *LPJOYHWSETTINGS;
297
298/* range of values returned by the hardware (filled in by calibration) */
299typedef struct joyreghwvalues_tag {
300 JOYRANGE jrvHardware; /* values returned by hardware */
301 DWORD dwPOVValues[JOY_POV_NUMDIRS];/* POV values returned by hardware */
302 DWORD dwCalFlags; /* what has been calibrated */
303} JOYREGHWVALUES, *LPJOYREGHWVALUES;
304
305/* hardware configuration */
306typedef struct joyreghwconfig_tag {
307 JOYREGHWSETTINGS hws; /* hardware settings */
308 DWORD dwUsageSettings;/* usage settings */
309 JOYREGHWVALUES hwv; /* values returned by hardware */
310 DWORD dwType; /* type of joystick */
311 DWORD dwReserved; /* reserved for OEM drivers */
312} JOYREGHWCONFIG, *LPJOYREGHWCONFIG;
313
314/* joystick calibration info structure */
315typedef struct joycalibrate_tag {
316 UINT wXbase;
317 UINT wXdelta;
318 UINT wYbase;
319 UINT wYdelta;
320 UINT wZbase;
321 UINT wZdelta;
322} JOYCALIBRATE;
323typedef JOYCALIBRATE *LPJOYCALIBRATE;
324
325/* prototype for joystick message function */
326typedef UINT (CALLBACK * JOYDEVMSGPROC)(DWORD dwID, UINT uMessage, LPARAM lParam1, LPARAM lParam2);
327typedef JOYDEVMSGPROC *LPJOYDEVMSGPROC;
328
329/* messages sent to joystick driver's DriverProc() function */
330#define JDD_GETNUMDEVS (DRV_RESERVED + 0x0001)
331#define JDD_GETDEVCAPS (DRV_RESERVED + 0x0002)
332#define JDD_GETPOS (DRV_RESERVED + 0x0101)
333#define JDD_SETCALIBRATION (DRV_RESERVED + 0x0102)
334#define JDD_CONFIGCHANGED (DRV_RESERVED + 0x0103)
335#define JDD_GETPOSEX (DRV_RESERVED + 0x0104)
336
337#define MCI_MAX_DEVICE_TYPE_LENGTH 80
338
339#define MCI_FALSE (MCI_STRING_OFFSET + 19)
340#define MCI_TRUE (MCI_STRING_OFFSET + 20)
341
342#define MCI_FORMAT_RETURN_BASE MCI_FORMAT_MILLISECONDS_S
343#define MCI_FORMAT_MILLISECONDS_S (MCI_STRING_OFFSET + 21)
344#define MCI_FORMAT_HMS_S (MCI_STRING_OFFSET + 22)
345#define MCI_FORMAT_MSF_S (MCI_STRING_OFFSET + 23)
346#define MCI_FORMAT_FRAMES_S (MCI_STRING_OFFSET + 24)
347#define MCI_FORMAT_SMPTE_24_S (MCI_STRING_OFFSET + 25)
348#define MCI_FORMAT_SMPTE_25_S (MCI_STRING_OFFSET + 26)
349#define MCI_FORMAT_SMPTE_30_S (MCI_STRING_OFFSET + 27)
350#define MCI_FORMAT_SMPTE_30DROP_S (MCI_STRING_OFFSET + 28)
351#define MCI_FORMAT_BYTES_S (MCI_STRING_OFFSET + 29)
352#define MCI_FORMAT_SAMPLES_S (MCI_STRING_OFFSET + 30)
353#define MCI_FORMAT_TMSF_S (MCI_STRING_OFFSET + 31)
354
355#define MCI_VD_FORMAT_TRACK_S (MCI_VD_OFFSET + 5)
356
357#define WAVE_FORMAT_PCM_S (MCI_WAVE_OFFSET + 0)
358#define WAVE_MAPPER_S (MCI_WAVE_OFFSET + 1)
359
360#define MCI_SEQ_MAPPER_S (MCI_SEQ_OFFSET + 5)
361#define MCI_SEQ_FILE_S (MCI_SEQ_OFFSET + 6)
362#define MCI_SEQ_MIDI_S (MCI_SEQ_OFFSET + 7)
363#define MCI_SEQ_SMPTE_S (MCI_SEQ_OFFSET + 8)
364#define MCI_SEQ_FORMAT_SONGPTR_S (MCI_SEQ_OFFSET + 9)
365#define MCI_SEQ_NONE_S (MCI_SEQ_OFFSET + 10)
366#define MIDIMAPPER_S (MCI_SEQ_OFFSET + 11)
367
368#define MCI_RESOURCE_RETURNED 0x00010000 /* resource ID */
369#define MCI_COLONIZED3_RETURN 0x00020000 /* colonized ID, 3 bytes data */
370#define MCI_COLONIZED4_RETURN 0x00040000 /* colonized ID, 4 bytes data */
371#define MCI_INTEGER_RETURNED 0x00080000 /* integer conversion needed */
372#define MCI_RESOURCE_DRIVER 0x00100000 /* driver owns returned resource */
373
374#define MCI_NO_COMMAND_TABLE 0xFFFF
375
376#define MCI_COMMAND_HEAD 0
377#define MCI_STRING 1
378#define MCI_INTEGER 2
379#define MCI_END_COMMAND 3
380#define MCI_RETURN 4
381#define MCI_FLAG 5
382#define MCI_END_COMMAND_LIST 6
383#define MCI_RECT 7
384#define MCI_CONSTANT 8
385#define MCI_END_CONSTANT 9
386#define MCI_HWND 10
387#define MCI_HPAL 11
388#define MCI_HDC 12
389
390#ifdef _WIN64
391#define MCI_INTEGER64 13
392#endif /* _WIN64 */
393
394#define MAKEMCIRESOURCE(wRet, wRes) MAKELRESULT((wRet), (wRes))
395
396typedef struct {
397 HWAVE hWave;
398 LPWAVEFORMATEX lpFormat;
399 DWORD_PTR dwCallback;
400 DWORD_PTR dwInstance;
401 UINT uMappedDeviceID;
402 DWORD_PTR dnDevNode;
403} WAVEOPENDESC, *LPWAVEOPENDESC;
404
405typedef struct {
406 DWORD dwStreamID;
407 WORD wDeviceID;
408} MIDIOPENSTRMID;
409
410typedef struct {
411 HMIDI hMidi;
412 DWORD_PTR dwCallback;
413 DWORD_PTR dwInstance;
414 DWORD_PTR dnDevNode;
415 DWORD cIds;
416 MIDIOPENSTRMID rgIds;
417} MIDIOPENDESC, *LPMIDIOPENDESC;
418
419typedef struct tMIXEROPENDESC
420{
421 HMIXEROBJ hmx;
422 LPVOID pReserved0;
423 DWORD_PTR dwCallback;
424 DWORD_PTR dwInstance;
425 DWORD_PTR dnDevNode;
426} MIXEROPENDESC, *LPMIXEROPENDESC;
427
428typedef struct {
429 UINT wDeviceID; /* device ID */
430 LPSTR lpstrParams; /* parameter string for entry in SYSTEM.INI */
431 UINT wCustomCommandTable; /* custom command table (0xFFFF if none) * filled in by the driver */
432 UINT wType; /* driver type (filled in by the driver) */
433} MCI_OPEN_DRIVER_PARMSA, *LPMCI_OPEN_DRIVER_PARMSA;
434
435typedef struct {
436 UINT wDeviceID; /* device ID */
437 LPWSTR lpstrParams; /* parameter string for entry in SYSTEM.INI */
438 UINT wCustomCommandTable; /* custom command table (0xFFFF if none) * filled in by the driver */
439 UINT wType; /* driver type (filled in by the driver) */
440} MCI_OPEN_DRIVER_PARMSW, *LPMCI_OPEN_DRIVER_PARMSW;
441DECL_WINELIB_TYPE_AW(MCI_OPEN_DRIVER_PARMS)
442DECL_WINELIB_TYPE_AW(LPMCI_OPEN_DRIVER_PARMS)
443
444DWORD_PTR WINAPI mciGetDriverData(UINT uDeviceID);
445BOOL WINAPI mciSetDriverData(UINT uDeviceID, DWORD_PTR dwData);
446UINT WINAPI mciDriverYield(UINT uDeviceID);
447BOOL WINAPI mciDriverNotify(HWND hwndCallback, UINT uDeviceID,
448 UINT uStatus);
449UINT WINAPI mciLoadCommandResource(HINSTANCE hInstance,
450 LPCWSTR lpResName, UINT uType);
451BOOL WINAPI mciFreeCommandResource(UINT uTable);
452
453#define DCB_NULL 0x0000
454#define DCB_WINDOW 0x0001 /* dwCallback is a HWND */
455#define DCB_TASK 0x0002 /* dwCallback is a HTASK */
456#define DCB_FUNCTION 0x0003 /* dwCallback is a FARPROC */
457#define DCB_EVENT 0x0005 /* dwCallback is an EVENT Handler */
458#define DCB_TYPEMASK 0x0007
459#define DCB_NOSWITCH 0x0008 /* don't switch stacks for callback */
460
461BOOL WINAPI DriverCallback(DWORD_PTR dwCallBack, DWORD uFlags, HDRVR hDev,
462 DWORD wMsg, DWORD_PTR dwUser, DWORD_PTR dwParam1, DWORD_PTR dwParam2);
463
464typedef VOID (*LPTASKCALLBACK)(DWORD_PTR dwInst);
465
466#define TASKERR_NOTASKSUPPORT 1
467#define TASKERR_OUTOFMEMORY 2
468UINT WINAPI mmTaskCreate(LPTASKCALLBACK, HANDLE*, DWORD_PTR);
469VOID WINAPI mmTaskBlock(DWORD);
470BOOL WINAPI mmTaskSignal(DWORD);
471VOID WINAPI mmTaskYield(VOID);
472DWORD WINAPI mmGetCurrentTask(VOID);
473
474#include <poppack.h>
475
476#ifdef __cplusplus
477}
478#endif
479
480#endif /* __MMDDK_H */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette