foo.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790
  1. #include "config.h"
  2. #include "foo.h"
  3. /* A hidden type not exposed publicly, similar to GUPNP's XML wrapper
  4. object */
  5. typedef struct _RegressFooHidden RegressFooHidden;
  6. int regress_foo_init_argv (int argc, char **argv);
  7. int regress_foo_init_argv_address (int *argc, char ***argv);
  8. void regress_foo_private_function (RegressFooObject *regress_foo);
  9. void regress_foo_test_unsigned (unsigned int uint);
  10. void regress_foo_interface_do_regress_foo (RegressFooInterface *self, int x);
  11. void regress_foo_do_regress_foo (RegressFooInterface *self, int x);
  12. int regress_foo_enum_method (RegressFooEnumType regress_foo_enum);
  13. RegressFooHidden * regress_foo_hidden_copy (const RegressFooHidden *boxed);
  14. void regress_foo_hidden_free (RegressFooHidden *boxed);
  15. GType regress_foo_hidden_get_type (void);
  16. RegressFooBoxed *regress_foo_boxed_copy (const RegressFooBoxed *boxed);
  17. void regress_foo_boxed_free (RegressFooBoxed *boxed);
  18. void regress_foo_dbus_data_free (RegressFooDBusData *boxed);
  19. RegressFooDBusData *regress_foo_dbus_data_copy (const RegressFooDBusData *boxed);
  20. typedef struct
  21. {
  22. int i;
  23. } PrivateStruct;
  24. void regress_foo_private_function (RegressFooObject *regress_foo)
  25. {
  26. }
  27. GType
  28. regress_foo_interface_get_type (void)
  29. {
  30. static GType object_type = 0;
  31. if (!object_type)
  32. {
  33. object_type = g_type_register_static_simple (G_TYPE_INTERFACE,
  34. "RegressFooInterface",
  35. sizeof (RegressFooInterfaceIface),
  36. NULL, 0, NULL, 0);
  37. g_type_interface_add_prerequisite (object_type, G_TYPE_OBJECT);
  38. }
  39. return object_type;
  40. }
  41. void regress_foo_interface_do_regress_foo (RegressFooInterface *self, int x)
  42. {
  43. REGRESS_FOO_INTERFACE_GET_INTERFACE(self)->do_regress_foo (self, x);
  44. }
  45. void regress_foo_interface_static_method (int x)
  46. {
  47. }
  48. enum {
  49. PROP_0,
  50. PROP_STRING,
  51. PROP_HIDDEN
  52. };
  53. enum {
  54. SIGNAL,
  55. LAST_SIGNAL
  56. };
  57. static guint regress_foo_object_signals[LAST_SIGNAL] = { 0 };
  58. static void
  59. regress_foo_regress_foo_interface_init (gpointer g_iface,
  60. gpointer iface_data)
  61. {
  62. RegressFooInterfaceIface *iface = (RegressFooInterfaceIface *)g_iface;
  63. iface->do_regress_foo = regress_foo_do_regress_foo;
  64. }
  65. enum {
  66. SUBIFACE_DESTROY_EVENT,
  67. SUBIFACE_LAST_SIGNAL
  68. };
  69. static void
  70. regress_foo_sub_interface_class_init (gpointer g_class, gpointer class_data);
  71. static guint regress_foo_subiface_signals[SUBIFACE_LAST_SIGNAL] = { 0 };
  72. GType
  73. regress_foo_sub_interface_get_type (void)
  74. {
  75. static GType object_type = 0;
  76. if (!object_type)
  77. {
  78. object_type = g_type_register_static_simple (G_TYPE_INTERFACE,
  79. "RegressFooSubInterface",
  80. sizeof (RegressFooSubInterfaceIface),
  81. regress_foo_sub_interface_class_init, 0, NULL, 0);
  82. g_type_interface_add_prerequisite (object_type, REGRESS_FOO_TYPE_INTERFACE);
  83. }
  84. return object_type;
  85. }
  86. static void
  87. regress_foo_sub_interface_class_init (gpointer g_class, gpointer class_data)
  88. {
  89. regress_foo_subiface_signals[SUBIFACE_DESTROY_EVENT] =
  90. g_signal_new ("destroy-event", REGRESS_FOO_TYPE_SUBINTERFACE,
  91. G_SIGNAL_RUN_LAST,
  92. G_STRUCT_OFFSET (RegressFooSubInterfaceIface, destroy_event),
  93. NULL, NULL, NULL,
  94. G_TYPE_NONE,
  95. 0,
  96. G_TYPE_NONE);
  97. }
  98. void
  99. regress_foo_sub_interface_do_bar (RegressFooSubInterface *self)
  100. {
  101. REGRESS_FOO_SUBINTERFACE_GET_INTERFACE(self)->do_bar (self);
  102. }
  103. /**
  104. * regress_foo_sub_interface_do_baz:
  105. * @self:
  106. * @callback: (scope call):
  107. * @user_data:
  108. */
  109. void
  110. regress_foo_sub_interface_do_baz (RegressFooSubInterface *self, GCallback callback, gpointer user_data)
  111. {
  112. REGRESS_FOO_SUBINTERFACE_GET_INTERFACE(self)->do_baz (self, callback, user_data);
  113. }
  114. G_DEFINE_TYPE_EXTENDED (RegressFooObject, regress_foo_object, G_TYPE_OBJECT,
  115. 0, G_IMPLEMENT_INTERFACE (REGRESS_FOO_TYPE_INTERFACE,
  116. regress_foo_regress_foo_interface_init));
  117. static void
  118. regress_foo_object_set_property (GObject *object,
  119. guint prop_id,
  120. const GValue *value,
  121. GParamSpec *pspec)
  122. {
  123. switch (prop_id)
  124. {
  125. case PROP_STRING:
  126. break;
  127. case PROP_HIDDEN:
  128. break;
  129. default:
  130. G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
  131. break;
  132. }
  133. }
  134. static void
  135. regress_foo_object_get_property (GObject *object,
  136. guint prop_id,
  137. GValue *value,
  138. GParamSpec *pspec)
  139. {
  140. switch (prop_id)
  141. {
  142. case PROP_STRING:
  143. break;
  144. case PROP_HIDDEN:
  145. break;
  146. default:
  147. G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
  148. break;
  149. }
  150. }
  151. static void
  152. regress_foo_object_class_init (RegressFooObjectClass *klass)
  153. {
  154. GObjectClass *gobject_class;
  155. gobject_class = G_OBJECT_CLASS (klass);
  156. gobject_class->set_property = regress_foo_object_set_property;
  157. gobject_class->get_property = regress_foo_object_get_property;
  158. g_object_class_install_property (gobject_class,
  159. PROP_STRING,
  160. g_param_spec_string ("string",
  161. "String nick",
  162. "The String Property Blurb",
  163. NULL,
  164. G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
  165. g_object_class_install_property (gobject_class,
  166. PROP_HIDDEN,
  167. g_param_spec_boxed ("hidden",
  168. "hidden property",
  169. "should not be exposed",
  170. regress_foo_hidden_get_type (),
  171. G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
  172. regress_foo_object_signals[SIGNAL] =
  173. g_signal_new ("signal",
  174. G_OBJECT_CLASS_TYPE (gobject_class),
  175. G_SIGNAL_RUN_LAST,
  176. 0,
  177. NULL, NULL,
  178. (GSignalCMarshaller)g_cclosure_marshal_STRING__OBJECT_POINTER,
  179. G_TYPE_STRING, 2, G_TYPE_OBJECT, G_TYPE_POINTER);
  180. }
  181. static void
  182. regress_foo_object_init (RegressFooObject *object)
  183. {
  184. }
  185. RegressFooObject *
  186. regress_foo_object_new (void)
  187. {
  188. return g_object_new (REGRESS_FOO_TYPE_OBJECT, NULL);
  189. }
  190. GObject *
  191. regress_foo_object_new_as_super (void)
  192. {
  193. return g_object_new (REGRESS_FOO_TYPE_OBJECT, NULL);
  194. }
  195. /**
  196. * regress_foo_object_external_type:
  197. * @object: a #RegressFooObject
  198. *
  199. * Returns: (transfer none): %NULL always
  200. */
  201. UtilityObject*
  202. regress_foo_object_external_type (RegressFooObject *object)
  203. {
  204. return NULL;
  205. }
  206. void
  207. regress_foo_object_take_all (RegressFooObject *object, int x, ...)
  208. {
  209. }
  210. void
  211. regress_foo_do_regress_foo (RegressFooInterface *self, int x)
  212. {
  213. }
  214. void
  215. regress_foo_object_is_it_time_yet (RegressFooObject *object, time_t time)
  216. {
  217. }
  218. /**
  219. * regress_foo_object_new_cookie: (skip)
  220. * @object:
  221. * @target:
  222. *
  223. * Not sure why this test is here...
  224. */
  225. RegressFooObjectCookie
  226. regress_foo_object_new_cookie (RegressFooObject *object, const char *target)
  227. {
  228. return NULL;
  229. }
  230. const char *
  231. regress_foo_object_get_name (RegressFooObject *object)
  232. {
  233. return "regress_foo";
  234. }
  235. char *
  236. regress_foo_object_dup_name (RegressFooObject *object)
  237. {
  238. return g_strdup ("regress_foo");
  239. }
  240. /**
  241. * regress_foo_object_read: (virtual read_fn)
  242. * @object: obj
  243. * @offset: offset
  244. * @length: length
  245. *
  246. * Read some stuff.
  247. */
  248. void
  249. regress_foo_object_read (RegressFooObject *object, int offset, int length)
  250. {
  251. }
  252. /**
  253. * regress_foo_object_skipped_method: (skip)
  254. * @object: obj
  255. *
  256. * This is only useful from C.
  257. */
  258. void
  259. regress_foo_object_skipped_method (RegressFooObject *object)
  260. {
  261. }
  262. G_DEFINE_ABSTRACT_TYPE (RegressFooSubobject, regress_foo_subobject, REGRESS_FOO_TYPE_OBJECT);
  263. static void
  264. regress_foo_subobject_class_init (RegressFooSubobjectClass *klass)
  265. {
  266. }
  267. static void
  268. regress_foo_subobject_init (RegressFooSubobject *object)
  269. {
  270. }
  271. /**
  272. * regress_foo_object_get_default:
  273. *
  274. * This function is intended to match clutter_stage_get_default which
  275. * uses a C sugar return type.
  276. *
  277. * Return value: (type RegressFooSubobject) (transfer none): The global #RegressFooSubobject
  278. */
  279. RegressFooObject *
  280. regress_foo_object_get_default ()
  281. {
  282. return NULL;
  283. }
  284. int regress_foo_init (void)
  285. {
  286. return REGRESS_FOO_SUCCESS_INT;
  287. }
  288. int regress_foo_init_argv (int argc, char **argv)
  289. {
  290. return REGRESS_FOO_SUCCESS_INT;
  291. }
  292. int regress_foo_init_argv_address (int *argc, char ***argv)
  293. {
  294. return REGRESS_FOO_SUCCESS_INT;
  295. }
  296. GType
  297. regress_foo_enum_type_get_type (void)
  298. {
  299. static GType etype = 0;
  300. if (G_UNLIKELY(etype == 0)) {
  301. static const GEnumValue values[] = {
  302. { REGRESS_FOO_ENUM_ALPHA, "REGRESS_FOO_ENUM_ALPHA", "alpha" },
  303. { REGRESS_FOO_ENUM_BETA, "REGRESS_FOO_ENUM_BETA", "beta" },
  304. { REGRESS_FOO_ENUM_DELTA, "REGRESS_FOO_ENUM_DELTA", "delta" },
  305. { 0, NULL, NULL }
  306. };
  307. etype = g_enum_register_static (g_intern_static_string ("RegressFooEnumType"), values);
  308. }
  309. return etype;
  310. }
  311. int regress_foo_enum_method (RegressFooEnumType regress_foo_enum)
  312. {
  313. return 0;
  314. }
  315. GType
  316. regress_foo_flags_type_get_type (void)
  317. {
  318. static GType etype = 0;
  319. if (G_UNLIKELY(etype == 0)) {
  320. static const GFlagsValue values[] = {
  321. { REGRESS_FOO_FLAGS_FIRST, "REGRESS_FOO_FLAGS_FIRST", "first" },
  322. { REGRESS_FOO_FLAGS_SECOND, "REGRESS_FOO_FLAGS_SECOND", "second" },
  323. { REGRESS_FOO_FLAGS_THIRD, "REGRESS_FOO_FLAGS_THIRD", "third" },
  324. { 0, NULL, NULL }
  325. };
  326. etype = g_flags_register_static (g_intern_static_string ("RegressFooFlagsType"), values);
  327. }
  328. return etype;
  329. }
  330. struct _RegressFooBoxed
  331. {
  332. int private;
  333. };
  334. RegressFooBoxed *
  335. regress_foo_boxed_copy (const RegressFooBoxed *boxed)
  336. {
  337. return (RegressFooBoxed *)g_memdup (boxed, sizeof (RegressFooBoxed));
  338. }
  339. void
  340. regress_foo_boxed_free (RegressFooBoxed *boxed)
  341. {
  342. g_slice_free (RegressFooBoxed, boxed);
  343. }
  344. GType
  345. regress_foo_boxed_get_type (void)
  346. {
  347. static GType our_type = 0;
  348. if (our_type == 0)
  349. our_type = g_boxed_type_register_static ("RegressFooBoxed",
  350. (GBoxedCopyFunc) regress_foo_boxed_copy,
  351. (GBoxedFreeFunc) regress_foo_boxed_free);
  352. return our_type;
  353. }
  354. RegressFooBoxed *
  355. regress_foo_boxed_new (void)
  356. {
  357. return g_slice_new0 (RegressFooBoxed);
  358. }
  359. void
  360. regress_foo_boxed_method (RegressFooBoxed *boxed)
  361. {
  362. }
  363. /* RegressFooDbus */
  364. struct _RegressFooDBusData
  365. {
  366. double private;
  367. };
  368. RegressFooDBusData *
  369. regress_foo_dbus_data_copy (const RegressFooDBusData *boxed)
  370. {
  371. return (RegressFooDBusData *)g_memdup (boxed, sizeof (RegressFooDBusData));
  372. }
  373. void
  374. regress_foo_dbus_data_free (RegressFooDBusData *boxed)
  375. {
  376. g_slice_free (RegressFooDBusData, boxed);
  377. }
  378. GType
  379. regress_foo_dbus_data_get_type (void)
  380. {
  381. static GType our_type = 0;
  382. if (our_type == 0)
  383. our_type = g_boxed_type_register_static ("RegressFooDBusData",
  384. (GBoxedCopyFunc) regress_foo_dbus_data_copy,
  385. (GBoxedFreeFunc) regress_foo_dbus_data_free);
  386. return our_type;
  387. }
  388. GType
  389. regress_foo_brect_get_type (void)
  390. {
  391. static GType our_type = 0;
  392. if (our_type == 0)
  393. our_type = g_boxed_type_register_static ("RegressFooBRect",
  394. (GBoxedCopyFunc) g_memdup, /* Won't work */
  395. (GBoxedFreeFunc) g_free);
  396. return our_type;
  397. }
  398. GType
  399. regress_foo_bunion_get_type (void)
  400. {
  401. static GType our_type = 0;
  402. if (our_type == 0)
  403. our_type = g_boxed_type_register_static ("RegressFooBUnion",
  404. (GBoxedCopyFunc) g_memdup, /* Won't work */
  405. (GBoxedFreeFunc) g_free);
  406. return our_type;
  407. }
  408. void regress_foo_test_unsigned (unsigned int uint)
  409. {
  410. }
  411. /**
  412. * regress_foo_test_string_array:
  413. * @array: (array zero-terminated=1):
  414. */
  415. void
  416. regress_foo_test_string_array (char **array)
  417. {
  418. }
  419. /**
  420. * regress_foo_test_string_array_with_g:
  421. * @array: (array zero-terminated=1):
  422. */
  423. void
  424. regress_foo_test_string_array_with_g (gchar **array)
  425. {
  426. }
  427. /**
  428. * regress_foo_test_array:
  429. *
  430. * Returns: (element-type utf8) (transfer container):
  431. */
  432. GArray *
  433. regress_foo_test_array (void)
  434. {
  435. return NULL;
  436. }
  437. /**
  438. * regress_foo_rectangle_new: (skip)
  439. *
  440. * This is a C convenience constructor; we have to (skip)
  441. * it because it's not a boxed type.
  442. */
  443. RegressFooRectangle *
  444. regress_foo_rectangle_new (int x, int y, int width, int height)
  445. {
  446. RegressFooRectangle *r = g_slice_new (RegressFooRectangle);
  447. r->x = x;
  448. r->y = y;
  449. r->width = width;
  450. r->height = height;
  451. return r;
  452. }
  453. /**
  454. * regress_foo_rectangle_add:
  455. * @r1: (inout): add to this rect
  456. * @r2: source rectangle
  457. */
  458. void
  459. regress_foo_rectangle_add(RegressFooRectangle *r1, const RegressFooRectangle *r2)
  460. {
  461. }
  462. /* RegressFooHidden */
  463. struct _RegressFooHidden
  464. {
  465. char *frob;
  466. };
  467. RegressFooHidden *
  468. regress_foo_hidden_copy (const RegressFooHidden *boxed)
  469. {
  470. return (RegressFooHidden *)g_memdup (boxed, sizeof (RegressFooHidden));
  471. }
  472. void
  473. regress_foo_hidden_free (RegressFooHidden *boxed)
  474. {
  475. g_slice_free (RegressFooHidden, boxed);
  476. }
  477. GType
  478. regress_foo_hidden_get_type (void)
  479. {
  480. static GType our_type = 0;
  481. if (our_type == 0)
  482. our_type = g_boxed_type_register_static ("RegressFooHidden",
  483. (GBoxedCopyFunc) regress_foo_hidden_copy,
  484. (GBoxedFreeFunc) regress_foo_hidden_free);
  485. return our_type;
  486. }
  487. GType
  488. regress_foo_error_get_type (void)
  489. {
  490. static GType etype = 0;
  491. if (G_UNLIKELY(etype == 0)) {
  492. static const GEnumValue values[] = {
  493. { REGRESS_FOO_ERROR_GOOD, "REGRESS_FOO_ERROR_GOOD", "good" },
  494. { REGRESS_FOO_ERROR_BAD, "REGRESS_FOO_ERROR_BAD", "bad" },
  495. { REGRESS_FOO_ERROR_UGLY, "REGRESS_FOO_ERROR_UGLY", "ugly" },
  496. { 0, NULL, NULL }
  497. };
  498. etype = g_enum_register_static (g_intern_static_string ("RegressFooError"), values);
  499. }
  500. return etype;
  501. }
  502. GQuark
  503. regress_foo_error_quark (void)
  504. {
  505. return g_quark_from_static_string ("regress_foo-error-quark");
  506. }
  507. void
  508. regress_foo_some_variant (guint x, va_list args)
  509. {
  510. }
  511. GType regress_foo_tile_handler_get_type(void);
  512. /* This setup of a totally hidden parent class matches
  513. * http://bugzilla.gnome.org/show_bug.cgi?id=561360
  514. */
  515. #define REGRESS_FOO_TYPE_TILE_HANDLER (regress_foo_tile_handler_get_type ())
  516. #define REGRESS_FOO_TILE_HANDLER(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), REGRESS_FOO_TYPE_TILE_HANDLER, RegressFooTileHandler))
  517. #define REGRESS_FOO_IS_TILE_HANDLER(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), REGRESS_FOO_TYPE_TILE_HANDLER))
  518. struct _RegressFooTileHandler
  519. {
  520. RegressFooObject parent_instance;
  521. };
  522. struct _RegressFooTileHandlerClass
  523. {
  524. RegressFooObjectClass parent_class;
  525. };
  526. typedef struct _RegressFooTileHandler RegressFooTileHandler;
  527. typedef struct _RegressFooTileHandlerClass RegressFooTileHandlerClass;
  528. G_DEFINE_TYPE(RegressFooTileHandler, regress_foo_tile_handler, REGRESS_FOO_TYPE_OBJECT);
  529. static void
  530. regress_foo_tile_handler_class_init (RegressFooTileHandlerClass *klass)
  531. {
  532. }
  533. static void
  534. regress_foo_tile_handler_init (RegressFooTileHandler *object)
  535. {
  536. }
  537. struct _RegressFooBuffer
  538. {
  539. RegressFooTileHandler parent_instance;
  540. };
  541. struct _RegressFooBufferClass
  542. {
  543. RegressFooTileHandlerClass parent_class;
  544. };
  545. G_DEFINE_TYPE(RegressFooBuffer, regress_foo_buffer, REGRESS_FOO_TYPE_TILE_HANDLER);
  546. static void
  547. regress_foo_buffer_class_init (RegressFooBufferClass *klass)
  548. {
  549. }
  550. static void
  551. regress_foo_buffer_init (RegressFooBuffer *object)
  552. {
  553. }
  554. void
  555. regress_foo_buffer_some_method (RegressFooBuffer *buffer)
  556. {
  557. }
  558. struct _RegressFooOtherObject
  559. {
  560. GObject parent_instance;
  561. };
  562. struct _RegressFooOtherObjectClass
  563. {
  564. GObjectClass parent_class;
  565. };
  566. G_DEFINE_TYPE(RegressFooOtherObject, regress_foo_other_object, G_TYPE_OBJECT);
  567. static void
  568. regress_foo_other_object_class_init (RegressFooOtherObjectClass *klass)
  569. {
  570. }
  571. static void
  572. regress_foo_other_object_init (RegressFooOtherObject *object)
  573. {
  574. }
  575. #define REGRESS_FOO_DEFINE_SHOULD_NOT_BE_EXPOSED "should not be exposed"
  576. /**
  577. * regress_foo_skip_me: (skip)
  578. * @fs: a #RegressFooSkippable
  579. *
  580. * Does something that's only interesting from C and should not be
  581. * exposed to language bindings.
  582. */
  583. void
  584. regress_foo_skip_me (RegressFooSkippable fs)
  585. {
  586. }
  587. /**
  588. * RegressFooForeignStruct: (foreign)
  589. *
  590. */
  591. RegressFooForeignStruct*
  592. regress_foo_foreign_struct_new (void)
  593. {
  594. return g_slice_new0 (RegressFooForeignStruct);
  595. }
  596. RegressFooForeignStruct*
  597. regress_foo_foreign_struct_copy (RegressFooForeignStruct *original)
  598. {
  599. RegressFooForeignStruct *copy;
  600. copy = regress_foo_foreign_struct_new ();
  601. copy->regress_foo = original->regress_foo;
  602. return copy;
  603. }
  604. /**
  605. * regress_foo_test_varargs_callback: (skip)
  606. *
  607. */
  608. void
  609. regress_foo_test_varargs_callback (gint i, RegressFooVarargsCallback callback)
  610. {
  611. }
  612. /**
  613. * regress_foo_test_varargs_callback2: (skip)
  614. *
  615. */
  616. void
  617. regress_foo_test_varargs_callback2 (RegressFooVarargsCallback callback)
  618. {
  619. }
  620. /**
  621. * regress_foo_test_varargs_callback3: (skip)
  622. *
  623. */
  624. void
  625. regress_foo_test_varargs_callback3 (RegressFooVarargsCallback callback,
  626. RegressFooVarargsCallback callback2)
  627. {
  628. }
  629. /**
  630. * regress_foo_object_append_new_stack_layer:
  631. *
  632. * This shouldn't be scanned as a constructor.
  633. *
  634. * Returns: (transfer none):
  635. */
  636. RegressFooOtherObject *
  637. regress_foo_object_append_new_stack_layer (RegressFooObject *obj, int x)
  638. {
  639. return NULL;
  640. }
  641. /**
  642. * regress_foo_not_a_constructor_new:
  643. *
  644. * This should be scanned as a top-level function, and shouldn't cause
  645. * a "Can't find matching type for constructor" warning.
  646. *
  647. * Returns: (transfer none):
  648. */
  649. RegressFooObject *
  650. regress_foo_not_a_constructor_new (void)
  651. {
  652. return NULL;
  653. }