Skip to content

Instantly share code, notes, and snippets.

@sigman78
Created March 4, 2014 14:05
Show Gist options
  • Save sigman78/9347060 to your computer and use it in GitHub Desktop.
Save sigman78/9347060 to your computer and use it in GitHub Desktop.
/// in file dd_publishing.h
/// replace
#include <stdint.h>
#include <stdbool.h>
/// to
#include <stdint.h>
#if defined(_MSC_VER)
#ifndef __cplusplus
#define bool int
#define false 0
#define true 1
#else
#define bool bool
#define true true
#define false false
#endif
#else
#include <stdbool.h>
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment