Skip to content

_Macros system_work.h

Ernesto Luis (aka Lohkdesgds Lhuminury) edited this page Mar 24, 2021 · 3 revisions

_Macros/system_work.h

This header is mainly used to define if the system is X64 or X86 (64 bit or 32 bit).
You can use this and check for:

  • LSW_X64
  • LSW_X32

Example

#include <LSWv5.h>

#ifdef LSW_X64
const std::string system = "64 bit system";
#else
const std::string system = "32 bit system";
#endif
  • Lunaris (rebrand & dev)
  • LSWv5
    • _Macros
    • Handling
    • Tools
      • AdvancedShared
      • Any
      • Common
      • CString
      • FastFunction
      • Future
      • Hash
      • Launcher
      • Resource
      • Stopwatch
      • SuperFunctionalMap
      • SuperMap
      • SuperMutex
      • SuperPair
      • SuperResource
      • SuperThread
    • Interface
      • Bitmap
      • Camera
      • Color
      • Config
      • Connection
      • DelayedTask
      • Display
      • Downloader
      • EventCustom
      • Events
      • EventTimer
      • Font
      • Logger
      • Mixer
      • PathManager
      • Sample
      • SmartFile
      • Target
      • Track
      • Vertex
      • Voice
    • Work
      • Block
      • BubbleFX
      • Button
      • Collisioner
      • GameCore
      • ProgressBar
      • ShineFX
      • Sprite
      • Text
      • TextInput
Clone this wiki locally