The PM_DISPATCH_VERSION constant did not change going from 10.6.6 to 10.6.7. This is why a SleepEnabler.kext that worked with 10.6.6 should also work with 10.6.7. You need to add pmIncrement=0 or pmVersion=21 to your com.apple.Boot.plist though.
/Extra/com.apple.Boot.plist:
<plist version="1.0"> <dict> ... <key>Kernel Flags</key> <string>arch=[i386 or x86_64] pmIncrement=0</string> ... </dict> </plist>- MacFiets