Skip to content
Snippets Groups Projects
Select Git revision
  • 381740e60b607ec5af026c6954eb2978b9b96fe4
  • master default protected
2 results

SQLiteSession.java

Blame
  • time.hpp 213 B
    #ifndef TIME_H
    #define TIME_H
    
    #include <stdint.h>
    
    /**
     * Initialises time.
     */
    void initTime();
    
    /**
     * Gets the number of milliseconds since program start.
     */
    uint32_t getCurrentMillis();
    
    #endif /* TIME_H */