mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-16 21:58:52 +02:00
26 lines
595 B
C
26 lines
595 B
C
![]() |
/* GIO - GLib Input, Output and Streaming Library
|
||
|
*
|
||
|
* SPDX-FileCopyrightText: 2009 Red Hat, Inc.
|
||
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
|
||
|
#error "Only <gio/gio.h> can be included directly."
|
||
|
#endif
|
||
|
|
||
|
#include <gio/gconverter.h>
|
||
|
|
||
|
G_BEGIN_DECLS
|
||
|
|
||
|
#define G_TYPE_BASE64_ENCODER (g_base64_encoder_get_type ())
|
||
|
|
||
|
GIO_AVAILABLE_IN_2_82
|
||
|
G_DECLARE_FINAL_TYPE (GBase64Encoder, g_base64_encoder, G, BASE64_ENCODER, GObject)
|
||
|
|
||
|
GIO_AVAILABLE_IN_2_82
|
||
|
GConverter *g_base64_encoder_new (gboolean break_lines);
|
||
|
|
||
|
G_END_DECLS
|