gphoto.ds: Make some functions and variables static.
This commit is contained in:
parent
5a2a914481
commit
4c2a211127
|
@ -103,16 +103,6 @@ struct tagActiveDS
|
|||
/* Helper functions */
|
||||
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
|
||||
* From Application to Source (Control Information) */
|
||||
TW_UINT16 GPHOTO2_CapabilityGet (pTW_IDENTITY pOrigin, TW_MEMREF pData);
|
||||
|
|
|
@ -311,7 +311,7 @@ static TW_UINT16 GPHOTO2_SourceControlHandler (
|
|||
}
|
||||
|
||||
|
||||
TW_UINT16 GPHOTO2_ImageGroupHandler (
|
||||
static TW_UINT16 GPHOTO2_ImageGroupHandler (
|
||||
pTW_IDENTITY pOrigin,
|
||||
TW_UINT16 DAT,
|
||||
TW_UINT16 MSG,
|
||||
|
|
|
@ -39,8 +39,8 @@
|
|||
#include "wine/debug.h"
|
||||
#include "resource.h"
|
||||
|
||||
LPCSTR settings_key = "Software\\Wine\\Gphoto2";
|
||||
LPCSTR settings_value = "SkipUI";
|
||||
static const char settings_key[] = "Software\\Wine\\Gphoto2";
|
||||
static const char settings_value[] = "SkipUI";
|
||||
static BOOL disable_dialog;
|
||||
static HBITMAP static_bitmap;
|
||||
|
||||
|
|
Loading…
Reference in New Issue