Changeset 546 for Whitix/branches/hybrid

Show
Ignore:
Timestamp:
05/24/08 09:57:17 (6 months ago)
Author:
mwhitworth
Message:

Add some SYMBOL_EXPORT functions.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/hybrid/lib/bitmap.c

    r66 r546  
    1818 
    1919#include <bitmap.h> 
     20#include <module.h> 
    2021#include <typedefs.h> 
    2122 
     
    4950} 
    5051 
     52SYMBOL_EXPORT(BmapSetBit); 
     53 
    5154/*********************************************************************** 
    5255 * 
     
    6669        return ((BYTE*)array)[index/8] & (1 << (index & 7)); 
    6770} 
     71 
     72SYMBOL_EXPORT(BmapGetBit);