Skip to content
GitLab
Explorer
Connexion
Navigation principale
Rechercher ou aller à…
Projet
lektor
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Compilation
Pipelines
Jobs
Planifications de pipeline
Artéfacts
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté GitLab
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
Kubat
lektor
Validations
54c17474
Vérifiée
Valider
54c17474
rédigé
Il y a 2 ans
par
Kubat
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
MISC: Make things compile again
parent
0c1d73e3
Branches
Branches contenant la validation
Aucune étiquette associée trouvée
1 requête de fusion
!193
AMADEUS: Implementation of lkt-lib
Pipeline
#3251
en échec
Il y a 2 ans
Étape : build
Modifications
2
Pipelines
2
Afficher les modifications d'espaces
En ligne
Côte à côte
Affichage de
2 fichiers modifiés
CMakeLists.txt
+1
-0
1 ajout, 0 suppression
CMakeLists.txt
src/module/module_repo_rs.c
+38
-2
38 ajouts, 2 suppressions
src/module/module_repo_rs.c
avec
39 ajouts
et
2 suppressions
CMakeLists.txt
+
1
−
0
Voir le fichier @
54c17474
...
@@ -175,6 +175,7 @@ set(lektor_db_SOURCES
...
@@ -175,6 +175,7 @@ set(lektor_db_SOURCES
set
(
lektor_module_SOURCES
set
(
lektor_module_SOURCES
src/base/reg.c
src/base/reg.c
src/module/module_repo.c
src/module/module_repo.c
src/module/module_repo_rs.c
src/module/mpv.c
src/module/mpv.c
src/module/module_sdl2.c
src/module/module_sdl2.c
src/module/thread.c
src/module/thread.c
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
src/module/module_repo_rs.c
+
38
−
2
Voir le fichier @
54c17474
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* Function from RUST *
* Function from RUST *
**********************/
**********************/
typedef
module_repo_rs_internal
;
struct
module_repo_rs_internal
;
/********************
/********************
* Export functions *
* Export functions *
...
@@ -16,7 +16,7 @@ typedef module_repo_rs_internal;
...
@@ -16,7 +16,7 @@ typedef module_repo_rs_internal;
PRIVATE_FUNCTION
int
PRIVATE_FUNCTION
int
mod_new
(
va_list
*
va
)
{
mod_new
(
va_list
*
va
)
{
va_list
copy
;
va_list
copy
;
struct
module_repo_rs_internal
**
repo
;
struct
module_repo_rs_internal
**
UNUSED
repo
;
va_copy
(
copy
,
*
va
);
va_copy
(
copy
,
*
va
);
repo
=
(
struct
module_repo_rs_internal
**
)
va_arg
(
copy
,
void
**
);
repo
=
(
struct
module_repo_rs_internal
**
)
va_arg
(
copy
,
void
**
);
...
@@ -26,31 +26,67 @@ mod_new(va_list *va) {
...
@@ -26,31 +26,67 @@ mod_new(va_list *va) {
PRIVATE_FUNCTION
int
PRIVATE_FUNCTION
int
mod_free
(
va_list
*
va
)
{
mod_free
(
va_list
*
va
)
{
va_list
copy
;
struct
module_repo_rs_internal
**
UNUSED
repo
;
va_copy
(
copy
,
*
va
);
repo
=
(
struct
module_repo_rs_internal
**
)
va_arg
(
copy
,
void
**
);
va_end
(
copy
);
return
1
;
return
1
;
}
}
PRIVATE_FUNCTION
int
PRIVATE_FUNCTION
int
mod_close
(
va_list
*
va
)
{
mod_close
(
va_list
*
va
)
{
va_list
copy
;
struct
module_repo_rs_internal
**
UNUSED
repo
;
va_copy
(
copy
,
*
va
);
repo
=
(
struct
module_repo_rs_internal
**
)
va_arg
(
copy
,
void
**
);
va_end
(
copy
);
return
1
;
return
1
;
}
}
PRIVATE_FUNCTION
int
PRIVATE_FUNCTION
int
mod_update
(
va_list
*
va
)
{
mod_update
(
va_list
*
va
)
{
va_list
copy
;
struct
module_repo_rs_internal
**
UNUSED
repo
;
va_copy
(
copy
,
*
va
);
repo
=
(
struct
module_repo_rs_internal
**
)
va_arg
(
copy
,
void
**
);
va_end
(
copy
);
return
1
;
return
1
;
}
}
PRIVATE_FUNCTION
int
PRIVATE_FUNCTION
int
mod_dry_update
(
va_list
*
va
)
{
mod_dry_update
(
va_list
*
va
)
{
va_list
copy
;
struct
module_repo_rs_internal
**
UNUSED
repo
;
va_copy
(
copy
,
*
va
);
repo
=
(
struct
module_repo_rs_internal
**
)
va_arg
(
copy
,
void
**
);
va_end
(
copy
);
return
1
;
return
1
;
}
}
PRIVATE_FUNCTION
int
PRIVATE_FUNCTION
int
mod_rescan
(
va_list
*
va
)
{
mod_rescan
(
va_list
*
va
)
{
va_list
copy
;
struct
module_repo_rs_internal
**
UNUSED
repo
;
va_copy
(
copy
,
*
va
);
repo
=
(
struct
module_repo_rs_internal
**
)
va_arg
(
copy
,
void
**
);
va_end
(
copy
);
return
1
;
return
1
;
}
}
PRIVATE_FUNCTION
int
PRIVATE_FUNCTION
int
mod_import
(
va_list
*
va
)
{
mod_import
(
va_list
*
va
)
{
va_list
copy
;
struct
module_repo_rs_internal
**
UNUSED
repo
;
va_copy
(
copy
,
*
va
);
repo
=
(
struct
module_repo_rs_internal
**
)
va_arg
(
copy
,
void
**
);
va_end
(
copy
);
return
1
;
return
1
;
}
}
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter