Commit 4c2a2111 authored by Alexandre Julliard's avatar Alexandre Julliard

gphoto.ds: Make some functions and variables static.

parent 5a2a9144
...@@ -103,16 +103,6 @@ struct tagActiveDS ...@@ -103,16 +103,6 @@ struct tagActiveDS
/* Helper functions */ /* Helper functions */
extern TW_UINT16 GPHOTO2_SaneCapability (pTW_CAPABILITY pCapability, TW_UINT16 action); extern TW_UINT16 GPHOTO2_SaneCapability (pTW_CAPABILITY pCapability, TW_UINT16 action);
/* */
extern TW_UINT16 GPHOTO2_ControlGroupHandler (
pTW_IDENTITY pOrigin, TW_UINT16 DAT, TW_UINT16 MSG, TW_MEMREF pData);
extern TW_UINT16 GPHOTO2_ImageGroupHandler (
pTW_IDENTITY pOrigin, TW_UINT16 DAT, TW_UINT16 MSG, TW_MEMREF pData);
extern TW_UINT16 GPHOTO2_AudioGroupHandler (
pTW_IDENTITY pOrigin, TW_UINT16 DAT, TW_UINT16 MSG, TW_MEMREF pData);
extern TW_UINT16 GPHOTO2_SourceManagerHandler (
pTW_IDENTITY pOrigin, TW_UINT16 DAT, TW_UINT16 MSG, TW_MEMREF pData);
/* Implementation of operation triplets /* Implementation of operation triplets
* From Application to Source (Control Information) */ * From Application to Source (Control Information) */
TW_UINT16 GPHOTO2_CapabilityGet (pTW_IDENTITY pOrigin, TW_MEMREF pData); TW_UINT16 GPHOTO2_CapabilityGet (pTW_IDENTITY pOrigin, TW_MEMREF pData);
......
...@@ -311,7 +311,7 @@ static TW_UINT16 GPHOTO2_SourceControlHandler ( ...@@ -311,7 +311,7 @@ static TW_UINT16 GPHOTO2_SourceControlHandler (
} }
TW_UINT16 GPHOTO2_ImageGroupHandler ( static TW_UINT16 GPHOTO2_ImageGroupHandler (
pTW_IDENTITY pOrigin, pTW_IDENTITY pOrigin,
TW_UINT16 DAT, TW_UINT16 DAT,
TW_UINT16 MSG, TW_UINT16 MSG,
......
...@@ -39,8 +39,8 @@ ...@@ -39,8 +39,8 @@
#include "wine/debug.h" #include "wine/debug.h"
#include "resource.h" #include "resource.h"
LPCSTR settings_key = "Software\\Wine\\Gphoto2"; static const char settings_key[] = "Software\\Wine\\Gphoto2";
LPCSTR settings_value = "SkipUI"; static const char settings_value[] = "SkipUI";
static BOOL disable_dialog; static BOOL disable_dialog;
static HBITMAP static_bitmap; static HBITMAP static_bitmap;
......
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