Changeset 546
- Timestamp:
- 05/24/08 09:57:17 (6 months ago)
- Files:
-
- 1 modified
-
Whitix/branches/hybrid/lib/bitmap.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/hybrid/lib/bitmap.c
r66 r546 18 18 19 19 #include <bitmap.h> 20 #include <module.h> 20 21 #include <typedefs.h> 21 22 … … 49 50 } 50 51 52 SYMBOL_EXPORT(BmapSetBit); 53 51 54 /*********************************************************************** 52 55 * … … 66 69 return ((BYTE*)array)[index/8] & (1 << (index & 7)); 67 70 } 71 72 SYMBOL_EXPORT(BmapGetBit);