admin
base
com
developer
drivers
ds
enduser
inetcore
inetsrv
loc
mergedcomponents
multimedia
danim
ddk
directx
dshow
embedded
inc
lib
media
audiosrv
avi
avicap
avicap.16
avicap.io
avifile
avifile.16
bin.16
compman
compman.16
dispdb32
drawdib
drawdib.16
inc
inc.16
lib.16
mciavi.16
mciavi32
mciwnd
mciwnd.16
msrle
res
drvproc.c
makefile
msrle.c
msrle.def
msrle.h
msrle.rc
msrle.rcv
msrle32.def
profile.c
profile.h
rle.c
rlec.c
sources
msvidc
msvideo.16
nec_98
verinfo.16
vidcap32
video
clock.avi
dirs
make16.bat
cdplayer
deluxe2
deluxecd
doc
dplay
dplayx
drivers
inc
mcicda
mcihwnd
mciole
mciseq
mcivisca
mciwave
media
midimap
mixerapp
mmcaps2k
mmdrv
mplayer2
msacm
samples
setup
sndrec32
sndvol
sounds
test
tools
verinfo
winmm
dirs
read.me
netshow
opengl
private
published
reality
resmgr
dirs
multimedia.mk
project.mk
net
printscan
public
published
sdktools
shell
termsrv
tools
windows
dirs
makefil0
23 lines
584 B
C
23 lines
584 B
C
/*
|
|
* AVICAP32:
|
|
*
|
|
* utility functions to read and write values to the profile,
|
|
* using win.ini for Win16/Win95 or current
|
|
* the registry for Win32 NT. (Trivial to change to registry for Win95)
|
|
*
|
|
* The only routine that AVICAP32 uses is GetProfileIntA
|
|
*/
|
|
|
|
#if defined(_WIN32) && defined(UNICODE)
|
|
|
|
/*
|
|
* read a UINT from the profile, or return default if
|
|
* not found.
|
|
*/
|
|
UINT mmGetProfileIntA(LPCSTR appname, LPCSTR valuename, INT uDefault);
|
|
|
|
// Now map all instances of GetProfileIntA to mmGetProfileIntA
|
|
#define GetProfileIntA mmGetProfileIntA
|
|
|
|
#endif
|