diff options
| author | Henrik Rydberg <rydberg@euromail.se> | 2010-04-10 23:11:59 +0200 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2010-04-15 06:10:07 +0200 |
| commit | 223ba8b1b753e12a4826bacab282ab8dc7ba8689 (patch) | |
| tree | 4e169a4c36b24fee41fe2f20a6039aa88e82e15f /src/memory.h | |
| parent | 2cf55b491c571d49b0ce22549c08f47ffc451a69 (diff) | |
Introduce Memory
Add the Memory structure to hold the multitouch parsing state.
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src/memory.h')
| -rw-r--r-- | src/memory.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/memory.h b/src/memory.h new file mode 100644 index 0000000..46dd312 --- /dev/null +++ b/src/memory.h | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | /*************************************************************************** | ||
| 2 | * | ||
| 3 | * Multitouch X driver | ||
| 4 | * Copyright (C) 2008 Henrik Rydberg <rydberg@euromail.se> | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | * GNU General Public License for more details. | ||
| 15 | * | ||
| 16 | * You should have received a copy of the GNU General Public License | ||
| 17 | * along with this program; if not, write to the Free Software | ||
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 19 | * | ||
| 20 | **************************************************************************/ | ||
| 21 | |||
| 22 | #ifndef MEMORY_H | ||
| 23 | #define MEMORY_H | ||
| 24 | |||
| 25 | #include "mtstate.h" | ||
| 26 | |||
| 27 | struct Memory { | ||
| 28 | }; | ||
| 29 | |||
| 30 | void init_memory(struct Memory *mem); | ||
| 31 | |||
| 32 | #endif | ||
