Advertisement
DraKiNs

[COD] Timer Convert

Jun 26th, 2011
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.29 KB | None | 0 0
  1. #define MsToSegundos(%0)    %0 / 1000;
  2. #define SecondsToMinutes(%0)    %0 / 60
  3. #define MinutesToSeconds(%0)    %0 * 60;
  4. #define MinuteToHours(%0)   %0 / 60;
  5.  
  6.  
  7. /*
  8.     - Exemplo:
  9.     printf("Servidor ligado a %d horas",MinuteToHours(MinutesToSeconds(SecondsToMinutes(MsToSegundos(GetTickCount())))));
  10. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement