Mercurial > mplayer.hg
view loader/registry.h @ 14378:83764f5c5cdb
finished xvid (api4) specific encoding options by adding the following options:
min_iquant max_iquant min_pquant max_pquant min_bquant max_bquant quant_intra_matrix quant_inter_matrix curve_compression_high
curve_compression_low overflow_control_strength max_overflow_improvement max_overflow_degradation container_frame_overhead par par_width
par_height aspect (no)autoaspect psnr bvhq
author | kraymer |
---|---|
date | Wed, 05 Jan 2005 23:09:11 +0000 |
parents | 692c4467da42 |
children | f5537cc95b02 |
line wrap: on
line source
#ifndef AVIFILE_REGISTRY_H #define AVIFILE_REGISTRY_H /******************************************************** * * Declaration of registry access functions * Copyright 2000 Eugene Kuznetsov (divx@euro.ru) * ********************************************************/ #ifdef __cplusplus extern "C" { #endif void free_registry(void); long __stdcall RegOpenKeyExA(long key, const char* subkey, long reserved, long access, int* newkey); long __stdcall RegCloseKey(long key); long __stdcall RegQueryValueExA(long key, const char* value, int* reserved, int* type, int* data, int* count); long __stdcall RegCreateKeyExA(long key, const char* name, long reserved, void* classs, long options, long security, void* sec_attr, int* newkey, int* status); long __stdcall RegSetValueExA(long key, const char* name, long v1, long v2, const void* data, long size); #ifdef __WINE_WINERROR_H long __stdcall RegEnumKeyExA(HKEY hKey, DWORD dwIndex, LPSTR lpName, LPDWORD lpcbName, LPDWORD lpReserved, LPSTR lpClass, LPDWORD lpcbClass, LPFILETIME lpftLastWriteTime); long __stdcall RegEnumValueA(HKEY hkey, DWORD index, LPSTR value, LPDWORD val_count, LPDWORD reserved, LPDWORD type, LPBYTE data, LPDWORD count); #endif #ifdef __cplusplus }; #endif #endif // AVIFILE_REGISTRY_H