Getting rid of the mouse cursor in glutGameMode

Is there an easy way to get rid of the mouse cursor in glutGameMode? I can of course just shove the mouse into the lower-right corner of the screen, but something tells me there’s a better way .

Try this: ShowCursor(false);

That did it. Thanks.