annotate src/system.h @ 15:c8a0dbd7752c

Forgot to commit SDL code
author Michael Pavone <pavone@retrodev.com>
date Sun, 27 Mar 2016 21:31:34 -0700
parents
children ae58e7c3c328
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15
c8a0dbd7752c Forgot to commit SDL code
Michael Pavone <pavone@retrodev.com>
parents:
diff changeset
1 #ifndef SYSTEM_H_
c8a0dbd7752c Forgot to commit SDL code
Michael Pavone <pavone@retrodev.com>
parents:
diff changeset
2 #define SYSTEM_H_
c8a0dbd7752c Forgot to commit SDL code
Michael Pavone <pavone@retrodev.com>
parents:
diff changeset
3
c8a0dbd7752c Forgot to commit SDL code
Michael Pavone <pavone@retrodev.com>
parents:
diff changeset
4 int system_init(int width, int height);
c8a0dbd7752c Forgot to commit SDL code
Michael Pavone <pavone@retrodev.com>
parents:
diff changeset
5 uint16_t *system_get_framebuffer(int *pitch);
c8a0dbd7752c Forgot to commit SDL code
Michael Pavone <pavone@retrodev.com>
parents:
diff changeset
6 void system_framebuffer_updated();
c8a0dbd7752c Forgot to commit SDL code
Michael Pavone <pavone@retrodev.com>
parents:
diff changeset
7
c8a0dbd7752c Forgot to commit SDL code
Michael Pavone <pavone@retrodev.com>
parents:
diff changeset
8 #endif //SYSTEM_H_