Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save okumura/864042 to your computer and use it in GitHub Desktop.
Save okumura/864042 to your computer and use it in GitHub Desktop.
NULL definition on Windows SDK v7.1 windef.h
#ifndef NULL
#ifdef __cplusplus
#define NULL 0
#else
#define NULL ((void *)0)
#endif
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment