home *** CD-ROM | disk | FTP | other *** search
/ PC Shareware 1997 June / PC_Shareware-1997-06.iso / programy / genesis / atomic.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-12  |  2.6 KB  |  88 lines

  1. /*------------------------------------------------------------------
  2.         Basic atomic C type definitions
  3.         -------------------------------
  4.  
  5.     (C) Silicon Dream Ltd 1994
  6.  
  7.   ------------------------------------------------------------------
  8.  
  9. Changes:                        Date:
  10. * Created file                        17/08/94
  11. */
  12.  
  13. #ifndef ATOMIC
  14. #define ATOMIC
  15.  
  16. /* Atomic type definitions */
  17.  
  18. #define byte        unsigned char    /* by */
  19. #define ushort        unsigned short    /* us */
  20. #define ulong        unsigned long    /* ul */
  21. #define bool        ushort        /* b */
  22. #define fpoint        long        /* fp */
  23.  
  24. /* General definitions */
  25.  
  26. #define _st        static
  27. #ifdef _MSC_VER
  28. #ifndef _WIN32        // 16 bit MSVC++
  29. #define _dyn        _export _far _pascal _loadds    // Used for static linked C DLL entry points
  30. #define _getdyn        _export _far _cdecl _loadds    // Used for 'GetProcAddress' linked C DLL entry points
  31. #define _cppdyn        _export _far            // Used for C++ DLL entry points
  32. #define _exp        _export _far            // Used for App callback (MakeProcInstance
  33. #endif _WIN32                        //              sets up DS)
  34. #ifdef _WIN32        // 32 bit MSVC++
  35. #define _dyn        __declspec(dllexport)
  36. #define _getdyn        __declspec(dllexport)
  37. #define _cppdyn        __declspec(dllexport)
  38. #define _exp
  39. #endif _WIN32
  40. #endif _MSC_VER
  41. #ifndef _MSC_VER    // Other
  42. #define _dyn        _export
  43. #define _getdyn        _export
  44. #define _cppdyn        _export
  45. #define _exp        _export
  46. #endif _MSC_VER
  47. #define FALSE        0
  48. #define TRUE        1
  49. #ifndef USHRT_MAX
  50. #define USHRT_MAX    0xFFFF
  51. #endif
  52. #ifndef ULONG_MAX
  53. #define ULONG_MAX    0xFFFFFFFF
  54. #endif
  55. #define FLT_MAX        1E+37
  56.  
  57. /* Use the following for accessing parts of a 16.16 fixed point number */
  58.  
  59. #define WHOLE_PART(x)        (((short *) &(x))[1])
  60. #define FRAC_PART(x)        (((ushort *) &(x))[0])
  61. #define FLOAT2FP(x)        ((long) ((x)*65536))
  62. #define SHORT2FP(x)        (((long) (x))<<16)
  63. #define LONG2FP(x)        ((x)<<16)
  64. #define FP2FLOAT(x)        (((float) (x))/65536)
  65.  
  66. /* Use AfxExt(dllname) if you want to use the DLL version of the MFC (_AFXDLL)
  67.    from within a DLL (ie. an MFC extension DLL). It implements the neccessary
  68.    DLL initialisation entry piont procedure */
  69.  
  70. #define AfxExt(dllname)    static AFX_EXTENSION_MODULE dllname##DLL={NULL, NULL}; \
  71.     static HINSTANCE hinst;\
  72.     extern "C" int APIENTRY DllMain(HINSTANCE hinstIn, DWORD dwReason, LPVOID pvReserved) \
  73.         { \
  74.         hinst=hinstIn; \
  75.         if (dwReason==DLL_PROCESS_ATTACH) \
  76.             { \
  77.             TRACE0(#dllname".DLL Initializing!\n"); \
  78.             AfxInitExtensionModule(dllname##DLL, hinst); \
  79.             new CDynLinkLibrary(dllname##DLL); \
  80.             } \
  81.         else if (dwReason==DLL_PROCESS_DETACH) \
  82.             { \
  83.             TRACE0(#dllname".DLL Terminating!\n"); \
  84.             } \
  85.         return 1; \
  86.         }
  87. #endif            // Do not include this file twice
  88.