Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- #define _CRT_SECURE_NO_WARNINGS
- #include <windows.h>
-
- #include "profiler.h"
- #include "macros.h"
-
- void test() {
- profile_this;
-
- printf("doing more work!\n");
- }
-
- int main(int argc, char* argv[]) {
- profile_this;
-
- printf("doing some work and sleeping!\n");
- Sleep(1000); // Sleep a seconds
- test();
-
- return 0;
- }
|