/say /sieste

This commit is contained in:
tth
2022-04-12 14:54:07 +02:00
parent 455428f444
commit ddfadf9a67
3 changed files with 32 additions and 10 deletions

View File

@@ -4,8 +4,8 @@
* http://la.buvette.org/photos/cumul
*/
#define FIMG_VERSION 179
#define FIMG_VERSION (181)
#define RELEASE_NAME ("noname")
/*
* in memory descriptor
*/
@@ -25,16 +25,17 @@ typedef struct {
* fimg file header (short version)
*/
typedef struct {
char magic[8];
char magic[8]; // this is not an asciiz !
int32_t w, h, t;
} FimgFileHead;
/*
* new 11 mars 2022
* new 11 mars 2022, and a lot of iterations
* around the concept of metadata for my work.
*/
typedef struct {
char magic[8];
char magic[8]; // this is not an asciiz !
struct timeval timestamp;
uint64_t pid; // WTF ?
uint64_t pid; // process id of the creator
int32_t count;
float fval;
char idcam[32];