La Billetterie

Un peu de tout saupoudré délicatement

Affichage des articles publiés le 4/23/2009

La solution est ici : Context Operator (C/C++ Language Expressions) When the expression evaluator encounters a symbol in an expression, it searches for the symbol in […]. With the context operator, you specify the starting point of the search and bypass the current location. You cannot specify a class, but you can specify a member […]

La liste des principaux intrinsics est : InterlockedIncrement() InterlockedDecrement() InterlockedAdd Function InterlockedExchange() InterlockedCompareExchange() InterlockedCompareExchangePointer InterlockedExchangePointer() La version simple : – chaque thread incremente et décrémente librement. On commence à zéro et on augmente. On ne peut pas resdescendre en-desous de zéro. Interlocked increment et Decrement renvoient la valeur après l’opération. – En Acquistion: on teste […]

List the loaded modules in your crash report. EnumerateLoadedModules( GetCurrentProcess(), // Process Handle // Callback function pointer (PENUMLOADED_MODULES_CALLBACK) EnumerateLoadedModulesProc, 0 ); // User context. BOOL CALLBACK EnumerateLoadedModulesProc( PSTR ModuleName, ULONG ModuleBase, ULONG ModuleSize, PVOID UserContext ) La documentation MSDN de EnumerateLoadedModules64 Function : Voir aussi les autres fonctions DbgHelp à coté.

http://msdn.microsoft.com/fr-fr/library/8dbf701c(VS.80).aspx http://support.microsoft.com/?scid=kb%3Ben-us%3B894573&x=9&y=6