Torna indietro   Hardware Upgrade Forum > Mondo Apple > Apple - Software e macOS

LG UltraGear evo GM9: 27 pollici, 5K, Mini LED e Dual Mode
LG UltraGear evo GM9: 27 pollici, 5K, Mini LED e Dual Mode
Hyper Mini LED con 2.304 zone, DisplayPort 2.1 e Dual Mode: 5K a 165 Hz oppure QHD a 330 Hz: LG propone un monitor da gioco ma dalla buona versatilità creativa, con prestazioni interessanti e un listino di 1.220 euro. Peccato l'alimentatore ingombrante
Motorola edge 70 Fusion FIFA World Cup 26 Edition: un ottimo smartphone per i fan del calcio
Motorola edge 70 Fusion FIFA World Cup 26 Edition: un ottimo smartphone per i fan del calcio
Motorola edge 70 Fusion FIFA World Cup 26 Edition porta la maglia iridata su uno smartphone accessibile: display Extreme AMOLED da 6,78 pollici a 144Hz, fotocamera Sony LYTIA 710 con moto ai, Snapdragon 7s Gen 3 abbinato a 8GB di RAM, batteria da 5200 mAh con ricarica TurboPower a 68W e certificazione IP68/IP69, il tutto in una veste PANTONE Silhouette con logo dorato a 24 carati, moto buds bass incluse in confezione e contenuti software dedicati ai Mondiali 2026
Renault 5 elettrica al giudizio definitivo: solo stupore iniziale o premi meritati?
Renault 5 elettrica al giudizio definitivo: solo stupore iniziale o premi meritati?
Dopo più di un anno dal primo test drive ci siamo rimessi al volante della Renault 5 E-Tech Electric, questa volta utilizzandola come prima auto per circa due settimane. Scoprite con noi se il progetto convince ancora
Tutti gli articoli Tutte le news

Vai al Forum
Rispondi
 
Strumenti
Old 25-05-2010, 14:58   #1
Jack™
Senior Member
 
L'Avatar di Jack™
 
Iscritto dal: Aug 2009
Messaggi: 803
pango.modules file, cos'è?

Salve, ultimamente ho cancellato alcuni file, tra cui un file specifico, chiamato pango.modules
Sinceramente non ho capito cosa sia, e se è un file di sistema, qualcosa che possa mettere a "rischio" il mac.
Sapete qualcosa a riguardo?
__________________
Trattato con: Frixi - gioser611 - SaNdi - Sasuke@81 - stefano_na - Computerman - Cifo - =KaTaKliSm4= - mulo2 - mrmojox - difrancia - amd-love - simone.o - zip88 - Limma - henrydigital
Jack™ è offline   Rispondi citando il messaggio o parte di esso
Old 26-05-2010, 16:43   #2
Jack™
Senior Member
 
L'Avatar di Jack™
 
Iscritto dal: Aug 2009
Messaggi: 803
up
__________________
Trattato con: Frixi - gioser611 - SaNdi - Sasuke@81 - stefano_na - Computerman - Cifo - =KaTaKliSm4= - mulo2 - mrmojox - difrancia - amd-love - simone.o - zip88 - Limma - henrydigital
Jack™ è offline   Rispondi citando il messaggio o parte di esso
Old 27-05-2010, 10:34   #3
Jack™
Senior Member
 
L'Avatar di Jack™
 
Iscritto dal: Aug 2009
Messaggi: 803
nessuno?
__________________
Trattato con: Frixi - gioser611 - SaNdi - Sasuke@81 - stefano_na - Computerman - Cifo - =KaTaKliSm4= - mulo2 - mrmojox - difrancia - amd-love - simone.o - zip88 - Limma - henrydigital
Jack™ è offline   Rispondi citando il messaggio o parte di esso
Old 29-05-2010, 11:53   #4
insane_2k
Senior Member
 
L'Avatar di insane_2k
 
Iscritto dal: Jun 2005
Città: Nord Milano
Messaggi: 1534
" Pango is a library for laying out and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. "

Modules

Modules — Support for loadable modules

Synopsis

PangoIncludedModule;
PangoMap;
PangoMapEntry;
PangoMap * pango_find_map (PangoLanguage *language,
guint engine_type_id,
guint render_type_id);
PangoEngine * pango_map_get_engine (PangoMap *map,
PangoScript script);
void pango_map_get_engines (PangoMap *map,
PangoScript script,
GSList **exact_engines,
GSList **fallback_engines);
void pango_module_register (PangoIncludedModule *module);

Description

Functions and macros in this section are used to support loading dynamic modules that add engines to Pango at run time.
Details
PangoIncludedModule

typedef struct {
void (*list) (PangoEngineInfo **engines,
int *n_engines);
void (*init) (GTypeModule *module);
void (*exit) (void);
PangoEngine *(*create) (const char *id);
} PangoIncludedModule;

The PangoIncludedModule structure for a statically linked module contains the functions that would otherwise be loaded from a dynamically loaded module.

list ()
a function that lists the engines defined in this module.

init ()
a function to initialize the module.

exit ()
a function to finalize the module.

create ()
a function to create an engine, given the engine name.
PangoMap

typedef struct _PangoMap PangoMap;

A PangoMap structure can be used to determine the engine to use for each character.
PangoMapEntry

typedef struct _PangoMapEntry PangoMapEntry;

A PangoMapEntry contains information about the engine that should be used for the codepoint to which this entry belongs and also whether the engine matches the language tag for this entry's map exactly or just approximately.
pango_find_map ()

PangoMap * pango_find_map (PangoLanguage *language,
guint engine_type_id,
guint render_type_id);

Locate a PangoMap for a particular engine type and render type. The resulting map can be used to determine the engine for each character.

language :
the language tag for which to find the map

engine_type_id :
the engine type for the map to find

render_type_id :
the render type for the map to find

Returns :
the suitable PangoMap.
pango_map_get_engine ()

PangoEngine * pango_map_get_engine (PangoMap *map,
PangoScript script);

Returns the best engine listed in the map for a given script

map :
a PangoMap

script :
a PangoScript

Returns :
the best engine, if one is listed for the script, or NULL. The lookup may cause the engine to be loaded; once an engine is loaded, it won't be unloaded. If multiple engines are exact for the script, the choice of which is returned is arbitrary.
pango_map_get_engines ()

void pango_map_get_engines (PangoMap *map,
PangoScript script,
GSList **exact_engines,
GSList **fallback_engines);

Finds engines in the map that handle the given script. The returned lists should be freed with g_slist_free, but the engines in the lists are owned by GLib and will be kept around permanently, so they should not be unref'ed.

map :
a PangoMap

script :
a PangoScript

exact_engines :
location to store list of engines that exactly handle this script.

fallback_engines :
location to store list of engines that approximately handle this script.

Since 1.4
pango_module_register ()

void pango_module_register (PangoIncludedModule *module);

Registers a statically linked module with Pango. The PangoIncludedModule structure that is passed in contains the functions that would otherwise be loaded from a dynamically loaded module.

module :
a PangoIncludedModule
Generated by GTK-Doc V1.13



Sono istruzioni di basso livello.
Non fondamentali per il SO, fino a che non andrai a richiedere una particolare funzione che richieda uno di quei sotto-moduli.

Ciao!
__________________
:: InSaNe2k ::
MacBook Pro 13" 2.5Ghz i5 - iPhone 2G & 3G & 4 - Canon EOS 600D
insane_2k è offline   Rispondi citando il messaggio o parte di esso
Old 30-05-2010, 15:35   #5
Max(IT)
Bannato
 
L'Avatar di Max(IT)
 
Iscritto dal: Mar 2003
Messaggi: 33385
scusa, se l' hai cancellato rimettilo dov' era, no ?
Max(IT) è offline   Rispondi citando il messaggio o parte di esso
Old 31-05-2010, 14:20   #6
Jack™
Senior Member
 
L'Avatar di Jack™
 
Iscritto dal: Aug 2009
Messaggi: 803
beh, se l'ho cancellato, come lo rimetto a posto?
Comunque sia, ho "risolto" anche perchè ultimamente ho ripristinato da un backup precedente.
Ma ad ogni modo, come detto da insane_2k, non è una cosa fondamentale per il SO.
Grazie a tutti
__________________
Trattato con: Frixi - gioser611 - SaNdi - Sasuke@81 - stefano_na - Computerman - Cifo - =KaTaKliSm4= - mulo2 - mrmojox - difrancia - amd-love - simone.o - zip88 - Limma - henrydigital
Jack™ è offline   Rispondi citando il messaggio o parte di esso
Old 31-05-2010, 17:52   #7
Max(IT)
Bannato
 
L'Avatar di Max(IT)
 
Iscritto dal: Mar 2003
Messaggi: 33385
Quote:
Originariamente inviato da Jack™ Guarda i messaggi
beh, se l'ho cancellato, come lo rimetto a posto?
Comunque sia, ho "risolto" anche perchè ultimamente ho ripristinato da un backup precedente.
Ma ad ogni modo, come detto da insane_2k, non è una cosa fondamentale per il SO.
Grazie a tutti
quando lo cancelli va nel cestino, no ?
Max(IT) è offline   Rispondi citando il messaggio o parte di esso
 Rispondi


LG UltraGear evo GM9: 27 pollici, 5K, Mini LED e Dual Mode LG UltraGear evo GM9: 27 pollici, 5K, Mini LED e...
Motorola edge 70 Fusion FIFA World Cup 26 Edition: un ottimo smartphone per i fan del calcio Motorola edge 70 Fusion FIFA World Cup 26 Editio...
Renault 5 elettrica al giudizio definitivo: solo stupore iniziale o premi meritati? Renault 5 elettrica al giudizio definitivo: solo...
HONOR CHOICE Projector Air Pro: piccolo, portatile e con Netflix HONOR CHOICE Projector Air Pro: piccolo, portati...
ASUS ProArt GoPro Edition è il notebook compatto per chi crea ASUS ProArt GoPro Edition è il notebook c...
Audi A2 ritorna in versione elettrica (e...
Minecraft per Nintendo Switch 2 ha una d...
Xiaomi REDMI 17 Series: batteria da 7.50...
Roborock Qrevo 2 Pro arriva in Italia: i...
Neanche l'IA scappa dalla pubblicità: ec...
Synology presenta la serie DiskStation n...
L'Europa prepara la sua 'Starlink': 348 ...
Sembrava Enrico Mentana, ma era un deepf...
Microsoft identifica ogni PC Windows con...
Il router contatta la Cina senza chieder...
Marte, la Terra scompare dietro Phobos n...
Social network e rischi per gli adolesce...
Engwe E26, il SUV delle e-bike, da uomo ...
Il chatbot AI del cartellone da 6.000 do...
HBM, DRAM e NAND: SK hynix prepara un'es...
Chromium
GPU-Z
OCCT
LibreOffice Portable
Opera One Portable
Opera One 106
CCleaner Portable
CCleaner Standard
Cpu-Z
Driver NVIDIA GeForce 546.65 WHQL
SmartFTP
Trillian
Google Chrome Portable
Google Chrome 120
VirtualBox
Tutti gli articoli Tutte le news Tutti i download

Strumenti

Regole
Non Puoi aprire nuove discussioni
Non Puoi rispondere ai messaggi
Non Puoi allegare file
Non Puoi modificare i tuoi messaggi

Il codice vB è On
Le Faccine sono On
Il codice [IMG] è On
Il codice HTML è Off
Vai al Forum


Tutti gli orari sono GMT +1. Ora sono le: 13:02.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
Served by www3v