~morphis/phablet-extras/ofono-sms-status-report

« back to all changes in this revision

Viewing changes to gatchat/gatsyntax.h

  • Committer: Martin Pitt
  • Date: 2011-02-21 14:08:48 UTC
  • mfrom: (18.1.7 ofono)
  • Revision ID: martin@piware.de-20110221140848-9v2jbu09zvxib74l
* New upstream release.
* debian/control: explicitly Conflicts with modemmanager: having both
  installed / running at the same time causes issues causes issues with both
  claiming modem devices. (LP: #688472)
* debian/patches/02-dont-handle-stacktraces.patch: stop catching stacktraces
  and printing the information internally, so apport can catch and report
  the possible bugs. (LP: #691450)
* debian/ofono.postinst: on configure, notify the user that a reboot is
  required (so ofono can get started by upstart). (LP: #600501)
* debian/control: add new Build-Depends on libbluetooth-dev to build with
  bluetooth support.
* debian/rules: drop override_dh_strip, not needed for debug symbols with
  cdbs.
* debian/rules: pass --no-restart-on-upgrade so ofono isn't automatically
  restarted when upgrades.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
 * properly and can be used to detect a modem's deviations from the relevant
70
70
 * standards.
71
71
 */
72
 
GAtSyntax *g_at_syntax_new_gsmv1();
 
72
GAtSyntax *g_at_syntax_new_gsmv1(void);
73
73
 
74
74
/* This syntax implements an extremely lax parser that can handle a variety
75
75
 * of modems.  Unfortunately it does not deal with echo at all, so echo must
76
76
 * be explicitly turned off before using the parser
77
77
 */
78
 
GAtSyntax *g_at_syntax_new_gsm_permissive();
 
78
GAtSyntax *g_at_syntax_new_gsm_permissive(void);
79
79
 
80
80
GAtSyntax *g_at_syntax_ref(GAtSyntax *syntax);
81
81
void g_at_syntax_unref(GAtSyntax *syntax);