mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
8df1c8a278
Original commit message from CVS: Added DivX ;-) support by using the wine .dll loader. you must unzip binaries.zip from http://divx.euro.ru/binaries.zip into the win32 directory **of the source tree**. Extended and bugfixed thr riff parser to support DivX ;-) Extended the avi parser to support DivX ;-) and MPEG Layer 3. Fixed a bug in mpg123. Sound still is seriously wrong with layer 3. Fixed MPEG2 playback in gstplay. Time indication in gstplay is temporarly broken.
16 lines
No EOL
571 B
C
16 lines
No EOL
571 B
C
#ifndef REGISTRY_H
|
|
#define REGISTRY_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
long RegOpenKeyExA(long key, char* subkey, long reserved, long access, int* newkey);
|
|
long RegCloseKey(long key);
|
|
long RegQueryValueExA(long key, char* value, int* reserved, int* type, int* data, int* count);
|
|
long RegCreateKeyExA(long key, char* name, long reserved,
|
|
void* classs, long options, long security,
|
|
void* sec_attr, int* newkey, int* status) ;
|
|
long RegSetValueExA(long key, char* name, long v1, long v2, void* data, long size);
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
#endif |