Not all events have "shortcut" creation functions (like CGEventCreateScrollWheelEvent, CGEventCreateMouseEvent, and CGEventCreateKeyboardEvent), so you have to create an empty event and then set the fields manually using the CGEventSet* functions.
The gesture-related events only have public constants for the Cocoa API level. For example, while NSLeftMouseDragged == kCGEventLeftMouseDragged == NX_LMOUSEDRAGGED == 6, NSEventTypeMagnify == 30 doesn't have any equivalent kCGEventMagnify or NX_MAGNIFY.
Also, the way gesture events work is a bit tricky; if you don't send the proper sequence of mouse/trackpad events, gesture, gesture begin/end, and specific-gesture events, it won't work.
There's not much documentation on which fields each event type needs; the easiest way to find out is to first create an event tap that logs everything, then generate the events you want and see what gets logged. In fact, you probably want to also log an NSEvent global monitor (log both the NSEvent itself and its underlying cgEvent).