Changeset 5604 for trunk/include
- Timestamp:
- Apr 27, 2001, 7:34:52 PM (24 years ago)
- Location:
- trunk/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/daudio.h
r5377 r5604 1 /* $Id: daudio.h,v 1. 3 2001-03-25 21:52:44sandervl Exp $ */1 /* $Id: daudio.h,v 1.4 2001-04-27 17:34:51 sandervl Exp $ */ 2 2 #ifndef __DAUDIO_H__ 3 3 #define __DAUDIO_H__ … … 22 22 #define DAUDIO_REGISTER_THREAD 0x4B 23 23 #define DAUDIO_DEREGISTER_THREAD 0x4C 24 #define DAUDIO_QUERYCAPS 0x4D 25 #define DAUDIO_QUERYVERSION 0x4E 26 #define DAUDIO_ADDLOOPINGBUFFER 0x4F 27 28 #define DAUDIO_VERSION 0x00000002 //highword = major, lowword = minor version 24 29 25 30 typedef struct { … … 38 43 struct 39 44 { 45 ULONG lpBuffer; 46 ULONG ulBufferLength; 47 } LoopingBuffer; 48 struct 49 { 40 50 ULONG ulCurrentPos; 41 51 } Pos; … … 44 54 ULONG hSemaphore; 45 55 } Thread; 56 struct 57 { 58 ULONG ulVersion; 59 } Version; 46 60 }; 47 61 48 62 } DAUDIO_CMD, FAR *LPDAUDIO_CMD; 49 63 64 #define DAUDIOCAPS_PRIMARYMONO 0x00000001 65 #define DAUDIOCAPS_PRIMARYSTEREO 0x00000002 66 #define DAUDIOCAPS_PRIMARY8BIT 0x00000004 67 #define DAUDIOCAPS_PRIMARY16BIT 0x00000008 68 #define DAUDIOCAPS_CONTINUOUSRATE 0x00000010 69 #define DAUDIOCAPS_EMULDRIVER 0x00000020 70 #define DAUDIOCAPS_CERTIFIED 0x00000040 71 #define DAUDIOCAPS_SECONDARYMONO 0x00000100 72 #define DAUDIOCAPS_SECONDARYSTEREO 0x00000200 73 #define DAUDIOCAPS_SECONDARY8BIT 0x00000400 74 #define DAUDIOCAPS_SECONDARY16BIT 0x00000800 75 76 typedef struct _DAUDIOCAPS 77 { 78 ULONG dwSize; 79 ULONG dwFlags; 80 ULONG dwMinSecondarySampleRate; 81 ULONG dwMaxSecondarySampleRate; 82 ULONG dwPrimaryBuffers; 83 ULONG dwMaxHwMixingAllBuffers; 84 ULONG dwMaxHwMixingStaticBuffers; 85 ULONG dwMaxHwMixingStreamingBuffers; 86 ULONG dwFreeHwMixingAllBuffers; 87 ULONG dwFreeHwMixingStaticBuffers; 88 ULONG dwFreeHwMixingStreamingBuffers; 89 ULONG dwMaxHw3DAllBuffers; 90 ULONG dwMaxHw3DStaticBuffers; 91 ULONG dwMaxHw3DStreamingBuffers; 92 ULONG dwFreeHw3DAllBuffers; 93 ULONG dwFreeHw3DStaticBuffers; 94 ULONG dwFreeHw3DStreamingBuffers; 95 ULONG dwTotalHwMemBytes; 96 ULONG dwFreeHwMemBytes; 97 ULONG dwMaxContigFreeHwMemBytes; 98 ULONG dwUnlockTransferRateHwBuffers; 99 ULONG dwPlayCpuOverheadSwBuffers; 100 ULONG dwReserved1; 101 ULONG dwReserved2; 102 } DAUDIO_CAPS, FAR *LPDAUDIO_CAPS; 103 104 #define SBLIVECAPS_MINSAMPLERATE 5000 105 #define SBLIVECAPS_MAXSAMPLERATE 48000 106 #define SBLIVECAPS_MAXSTREAMS 32 107 50 108 #endif //__DAUDIO_H__ -
trunk/include/win/wine/unicode.h
r5519 r5604 111 111 *p++ = *src++; 112 112 } 113 *p = 0; 113 114 #endif 114 115 return dst; -
trunk/include/winuser32.h
r5263 r5604 1 /* $Id: winuser32.h,v 1. 9 2001-02-24 13:31:37sandervl Exp $ */1 /* $Id: winuser32.h,v 1.10 2001-04-27 17:34:52 sandervl Exp $ */ 2 2 3 3 /* … … 22 22 BOOL WIN32API setPageXForm(pDCData pHps); 23 23 VOID WIN32API selectClientArea(pDCData pHps); 24 VOID WIN32API checkOrigin(pDCData pHps); 24 25 VOID WIN32API removeClientArea(pDCData pHps); 25 26 LONG WIN32API clientHeight(HWND hwnd, pDCData pHps);
Note:
See TracChangeset
for help on using the changeset viewer.