File: HsWin32.h

package info (click to toggle)
haskell-ansi-terminal 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: haskell: 1,523; ansic: 60; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 626 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _ANSI_TERMINAL_HSWIN32_H
#define _ANSI_TERMINAL_HSWIN32_H

#define UNICODE
#include <windows.h>

/* Copied from the Win32-2.13.4.0 package, but renamed `castUINTPtrToPtr` to
 * `_ansi_terminal_castUINTPtrToPtr`, in order to avoid problems with duplicate
 * symbols in GHC's object files. See:
 * https://gitlab.haskell.org/ghc/ghc/-/issues/23365.
 */

#ifndef INLINE
# if defined(_MSC_VER)
#  define INLINE extern __inline
# else
#  define INLINE extern inline
# endif
#endif

INLINE void *_ansi_terminal_castUINTPtrToPtr(UINT_PTR n) { return (void *)n; }

#endif /* _ANSI_TERMINAL_HSWIN32_H */