Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
wineacm.h
Package: vlc-1.0.5.zip [view]
Upload User: kjfoods
Upload Date: 2020-07-06
Package Size: 29949k
Code Size: 2k
Category:
midi program
Development Platform:
Unix_Linux
- #ifndef WINEACM_H
- #define WINEACM_H
- /* -*- tab-width: 8; c-basic-offset: 4 -*- */
- /***********************************************************************
- * Wine specific - Win32
- */
- #include "wine/msacmdrv.h"
- #ifdef __cplusplus
- extern "C" {
- #endif /* defined(__cplusplus) */
- typedef struct _WINE_ACMDRIVERID *PWINE_ACMDRIVERID;
- typedef struct _WINE_ACMDRIVER *PWINE_ACMDRIVER;
- typedef struct _WINE_ACMOBJ
- {
- PWINE_ACMDRIVERID pACMDriverID;
- } WINE_ACMOBJ, *PWINE_ACMOBJ;
- typedef struct _WINE_ACMDRIVER
- {
- WINE_ACMOBJ obj;
- HDRVR hDrvr;
- DRIVERPROC pfnDriverProc;
- PWINE_ACMDRIVER pNextACMDriver;
- int iUsage;
- } WINE_ACMDRIVER;
- typedef struct _WINE_ACMSTREAM
- {
- WINE_ACMOBJ obj;
- PWINE_ACMDRIVER pDrv;
- ACMDRVSTREAMINSTANCE drvInst;
- HACMDRIVER hAcmDriver;
- } WINE_ACMSTREAM, *PWINE_ACMSTREAM;
- typedef struct _WINE_ACMDRIVERID
- {
- LPSTR pszFileName;
- WORD wFormatTag;
- HINSTANCE hInstModule; /* NULL if global */
- DWORD dwProcessID; /* ID of process which installed a local driver */
- WIN_BOOL bEnabled;
- PWINE_ACMDRIVER pACMDriverList;
- PWINE_ACMDRIVERID pNextACMDriverID;
- PWINE_ACMDRIVERID pPrevACMDriverID;
- } WINE_ACMDRIVERID;
- /* From internal.c */
- extern HANDLE MSACM_hHeap;
- extern PWINE_ACMDRIVERID MSACM_pFirstACMDriverID;
- extern PWINE_ACMDRIVERID MSACM_pLastACMDriverID;
- PWINE_ACMDRIVERID MSACM_RegisterDriver(const char* pszFileName,
- WORD wFormatTag,
- HINSTANCE hinstModule);
- PWINE_ACMDRIVERID MSACM_UnregisterDriver(PWINE_ACMDRIVERID p);
- void MSACM_UnregisterAllDrivers(void);
- PWINE_ACMDRIVERID MSACM_GetDriverID(HACMDRIVERID hDriverID);
- PWINE_ACMDRIVER MSACM_GetDriver(HACMDRIVER hDriver);
- PWINE_ACMOBJ MSACM_GetObj(HACMOBJ hObj);
- #ifdef __cplusplus
- } /* extern "C" */
- #endif /* defined(__cplusplus) */
- #endif /* WINEACM_H */