Commit c5b34644 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

dsound: Make id_to_offset() static.

parent ff071776
......@@ -510,7 +510,7 @@ int id_to_object(LPCDIDATAFORMAT df, int id)
return -1;
}
int id_to_offset(const DataFormat *df, int id)
static int id_to_offset(const DataFormat *df, int id)
{
int obj = id_to_object(df->wine_df, id);
......
......@@ -81,7 +81,6 @@ extern void release_DataFormat(DataFormat *df) ;
extern void queue_event(LPDIRECTINPUTDEVICE8A iface, int inst_id, DWORD data, DWORD time, DWORD seq);
/* Helper functions to work with data format */
extern int id_to_object(LPCDIDATAFORMAT df, int id);
extern int id_to_offset(const DataFormat *df, int id);
extern int find_property(const DataFormat *df, LPCDIPROPHEADER ph);
/* Common joystick stuff */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment