-rw-r--r-- | gammu/emb/gammu/gammu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gammu/emb/gammu/gammu.h b/gammu/emb/gammu/gammu.h index d3de31b..ff50c9c 100644 --- a/gammu/emb/gammu/gammu.h +++ b/gammu/emb/gammu/gammu.h @@ -44,31 +44,31 @@ typedef struct { char *description; } HelpCategoryDescriptions; typedef struct { char *parameter; int min_arg; int max_arg; void (*Function) (int argc, char *argv[]); HelpCategory help_cat[10]; char *help; } GSM_Parameters; void Print_Error (GSM_Error error); void GSM_Init (bool checkerror); void GSM_Terminate (void); -static GSM_StateMachine s; -static GSM_Phone_Functions *Phone; -static GSM_Error error; +extern GSM_StateMachine s; +extern GSM_Phone_Functions *Phone; +extern GSM_Error error; -static bool gshutdown; +extern volatile bool gshutdown; void interrupt(int sign); #ifdef GSM_ENABLE_BEEP void GSM_PhoneBeep (void); #endif /* How should editor hadle tabs in this file? Add editor commands here. * vim: noexpandtab sw=8 ts=8 sts=8: */ |