per page, with , order by , clip by
Results of 0 - 1 of about 0 (0.000 sec.)
gsequencer: ags/vst3-capi/pluginterfaces/base/ags_vst_fstrdefs.h File Reference
@digest: 64003f72aec3897044e8908a00172bea
@id: 337695
@lang: en-US
@mdate: 2023-08-25T10:55:46Z
@size: 49171
@type: text/html
content-type: text/xhtml;charset=UTF-8
generator: Doxygen 1.9.4
viewport: width=device-width, initial-scale=1
x-ua-compatible: IE=11
#keywords: gunichar2 (34991), tchar (30718), tstrlen (13671), strlen8 (13671), strlen16 (13671), tstrcmp (13671), strcmp8 (13671), strcmp16 (13671), tstrncmp (13671), strncmp8 (13671), strncmp16 (13671), tstrcpy (13671), strcpy8 (13671), strcpy16 (13671), tstrncpy (13671), strncpy8 (13671), strncpy16 (13671), tstrcat (13671), strcat8 (13671), strcat16 (13671), guint32 (10557), fstrdefs (8239), vst (7626), agsvstfidstring (7358), gint32 (6491), str16 (6002), dst (5377), gchar (3161), str8 (2930), id2 (2797), id1 (2678), string (2461)
nongnu.org/gsequencer Home Screenshots Feed GNU Savannah Wallpapers Help About gsequencer 6.0.2 Advanced Gtk+ Sequencer ags vst3-capi pluginterfaces base Functions ags_vst_fstrdefs.h File Reference #include <glib.h> #include < ags/vst3-capi/pluginterfaces/base/ags_vst_ftypes.h > Include dependency graph for ags_vst_fstrdefs.h: This graph shows which files directly or indirectly include this file: Go to the source code of this file. Functions gint32 ags_vst_tstrlen ( ags_vst_tchar *str) gint32 ags_vst_strlen8 (gchar *str) gint32 ags_vst_strlen16 (gunichar2 *str) gint32 ags_vst_tstrcmp ( ags_vst_tchar *src, ags_vst_tchar *dst) gint32 ags_vst_strcmp8 (gchar *src, gchar *dst) gint32 ags_vst_strcmp16 (gunichar2 *src, gunichar2 *dst) gint32 ags_vst_tstrncmp ( ags_vst_tchar *first, ags_vst_tchar *last, guint32 count) gint32 ags_vst_strncmp8 (gchar *first, gchar *last, guint32 count) gint32 ags_vst_strncmp16 (gunichar2 *first, gunichar2 *last, guint32 count) ags_vst_tchar * ags_vst_tstrcpy ( ags_vst_tchar *dst, ags_vst_tchar *src) gchar * ags_vst_strcpy8 (gchar *dst, gchar *src) gunichar2 * ags_vst_strcpy16 (gunichar2 *dst, gunichar2 *src) ags_vst_tchar * ags_vst_tstrncpy ( ags_vst_tchar *dest, ags_vst_tchar *source, guint32 count) gchar * ags_vst_strncpy8 (gchar *dest, gchar *source, guint32 count) gunichar2 * ags_vst_strncpy16 (gunichar2 *dest, gunichar2 *source, guint32 count) ags_vst_tchar * ags_vst_tstrcat ( ags_vst_tchar *dst, ags_vst_tchar *src) gchar * ags_vst_strcat8 (gchar *dst, gchar *src) gunichar2 * ags_vst_strcat16 (gunichar2 *dst, gunichar2 *src) void ags_vst_str8_to_str16 (gunichar2 *dst, gchar *src, gint32 n) gboolean ags_vst_fid_strings_equal ( AgsVstFIDString id1, AgsVstFIDString id2) Function Documentation ◆ ags_vst_fid_strings_equal() gboolean ags_vst_fid_strings_equal ( AgsVstFIDString id1 , AgsVstFIDString id2 ) FID string equal. Parameters id1 the identifier 1 id2 the identifier 2 Returns true if equal, otherwise false Since 5.0.0 ◆ ags_vst_str8_to_str16() void ags_vst_str8_to_str16 ( gunichar2 * dst , gchar * src , gint32 n ) String to unicode string. Parameters dst the destination string src the source string n the count Since 5.0.0 ◆ ags_vst_strcat16() gunichar2 * ags_vst_strcat16 ( gunichar2 * dst , gunichar2 * src ) Unicode string cat. Parameters dst the destination string src the source string Returns the resulting string Since 5.0.0 ◆ ags_vst_strcat8() gchar * ags_vst_strcat8 ( gchar * dst , gchar * src ) String cat. Parameters dst the destination string src the source string Returns the resulting string Since 5.0.0 ◆ ags_vst_strcmp16() gint32 ags_vst_strcmp16 ( gunichar2 * src , gunichar2 * dst ) Unicode string compare. Parameters src the source string dst the destination string Returns 0 if matches, > 0 if more or < 0 if less Since 5.0.0 ◆ ags_vst_strcmp8() gint32 ags_vst_strcmp8 ( gchar * src , gchar * dst ) String compare. Parameters src the source string dst the destination string Returns 0 if matches, > 0 if more or < 0 if less Since 5.0.0 ◆ ags_vst_strcpy16() gunichar2 * ags_vst_strcpy16 ( gunichar2 * dst , gunichar2 * src ) Unicode string copy. Parameters dst the destination string src the source string Returns the resulting string Since 5.0.0 ◆ ags_vst_strcpy8() gchar * ags_vst_strcpy8 ( gchar * dst , gchar * src ) String copy. Parameters dst the destination string src the source string Returns the resulting string Since 5.0.0 ◆ ags_vst_strlen16() gint32 ags_vst_strlen16 ( gunichar2 * str ) Unicode string length. Parameters str the string Returns the length Since 5.0.0 ◆ ags_vst_strlen8() gint32 ags_vst_strlen8 ( gchar * str ) String length. Parameters str the string Returns the length Since 5.0.0 ◆ ags_vst_strncmp16() gint32 ags_vst_strncmp16 ( gunichar2 * first , gunichar2 * last , guint32 count ) Unicode string n-compare. Parameters first the first string last the last string count the count to match Returns 0 if matches, > 0 if more or < 0 if less Since 5.0.0 ◆ ags_vst_strncmp8() gint32 ags_vst_strncmp8 ( gchar * first , gchar * last , guint32 count ) String n-compare. Parameters first the first string last the last string count the count to match Returns 0 if matches, > 0 if more or < 0 if less Since 5.0.0 ◆ ags_vst_strncpy16() gunichar2 * ags_vst_strncpy16 ( gunichar2 * dest , gunichar2 * source , guint32 count ) Unicode string n-copy. Parameters dst the destination string src the source string count the count to match Returns the resulting string Since 5.0.0 ◆ ags_vst_strncpy8() gchar * ags_vst_strncpy8 ( gchar * dest , gchar * source , guint32 count ) String n-copy. Parameters dst the destination string src the source string count the count to match Returns the resulting string Since 5.0.0 ◆ ags_vst_tstrcat() ags_vst_tchar * ags_vst_tstrcat ( ags_vst_tchar * dst , ags_vst_tchar * src ) String cat. Parameters dst the destination string src the source string Returns the resulting string Since 5.0.0 ◆ ags_vst_tstrcmp() gint32 ags_vst_tstrcmp ( ags_vst_tchar * src , ags_vst_tchar * dst ) String compare. Parameters src the source string dst the destination string Returns 0 if matches, > 0 if more or < 0 if less Since 5.0.0 ◆ ags_vst_tstrcpy() ags_vst_tchar * ags_vst_tstrcpy ( ags_vst_tchar * dst , ags_vst_tchar * src ) String copy. Parameters dst the destination string src the source string Returns the resulting string Since 5.0.0 ◆ ags_vst_tstrlen() gint32 ags_vst_tstrlen ( ags_vst_tchar * str ) String length. Parameters str the string Returns the length Since 5.0.0 ◆ ags_vst_tstrncmp() gint32 ags_vst_tstrncmp ( ags_vst_tchar * first , ags_vst_tchar * last , guint32 count ) String n-compare. Parameters first the first string last the last string count the count to match Returns 0 if matches, > 0 if more or < 0 if less Since 5.0.0 ◆ ags_vst_tstrncpy() ags_vst_tchar * ags_vst_tstrncpy ( ags_vst_tchar * dest , ags_vst_tchar * source , guint32 count ) String n-copy. Parameters dst the destination string src the source string count the count to match Returns the resulting string Since 5.0.0 Generated by 1.9.4 ...
http://www.gnu.org/savannah-checkouts/non-gnu/gsequencer/api/6.0.2/libags-vst/ags__vst__fstrdefs_8h.html - [detail] - [similar]
PREV NEXT
Powered by Hyper Estraier 1.4.13, with 213369 documents and 1081681 words.