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é
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
Kubat
lektor
Requêtes de fusion
!186
Add the Qt window module as an alternative to the SDL2 module
Code
Examiner les modifications
Extraire la branche
Télécharger
Correctifs
Diff brut
Fusionnées
Add the Qt window module as an alternative to the SDL2 module
qt-window-module
vers
master
Vue d'ensemble
2
Validations
33
Pipelines
31
Modifications
2
Fusionnées
Kubat
a demandé de fusionner
qt-window-module
vers
master
3 years ago
Vue d'ensemble
2
Validations
33
Pipelines
31
Modifications
2
Étendre
Att the Qt window module as an alternative to the SDL2 module
Description is TBD
Modification effectuée
3 years ago
par
Elliu
0
0
Rapports de requête de fusion
Affichage du commit
01845463
Afficher la dernière version
2 fichiers
+
17
−
12
En ligne
Comparer les modifications
Côte à côte
En ligne
Afficher les modifications des espaces
Afficher un fichier à la fois
Fichiers
2
Rechercher (par ex. *.vue) (Ctrl+P)
01845463
Fix clang errors
· 01845463
Elliu
rédigé
3 years ago
inc/lektor/queue.h
+
11
−
6
Options
@@ -22,13 +22,18 @@ enum {
__LKT_DB_UPDATING_PROGRESS
=
1
,
/* Update in progress */
};
#define LKT_PLAY_STOP ((void *)(size_t)__LKT_PLAY_STOP)
#define LKT_PLAY_PLAY ((void *)(size_t)__LKT_PLAY_PLAY)
#define LKT_PLAY_PAUSE ((void *)(size_t)__LKT_PLAY_PAUSE)
#define LKT_PLAY_TOGGLE ((void *)(size_t)__LKT_PLAY_TOGGLE)
#if defined(__cplusplus)
#define CAST_LKT_EVENT(i) reinterpret_cast<void*>(static_cast<size_t>(i))
#else
#define CAST_LKT_EVENT(i) ((void*)(size_t)i)
#endif
#define LKT_PLAY_STOP CAST_LKT_EVENT(__LKT_PLAY_STOP)
#define LKT_PLAY_PLAY CAST_LKT_EVENT(__LKT_PLAY_PLAY)
#define LKT_PLAY_PAUSE CAST_LKT_EVENT(__LKT_PLAY_PAUSE)
#define LKT_PLAY_TOGGLE CAST_LKT_EVENT(__LKT_PLAY_TOGGLE)
#define LKT_DB_UPDATING_PROGRESS
((void *)(size_t)
__LKT_DB_UPDATING_PROGRESS)
#define LKT_DB_UPDATING_FINISHED
((void *)(size_t)
__LKT_DB_UPDATING_FINISHED)
#define LKT_DB_UPDATING_PROGRESS
CAST_LKT_EVENT(
__LKT_DB_UPDATING_PROGRESS)
#define LKT_DB_UPDATING_FINISHED
CAST_LKT_EVENT(
__LKT_DB_UPDATING_FINISHED)
typedef
enum
{
LKT_EVENT_NULL
=
0
,
// NULL
Chargement en cours