Z/os Config File

[codesyntax lang=”bash”] #################################################################### # HERCULES EMULATOR CONTROL FILE # # (Note: not all parameters are shown) # #################################################################### #—————————————————————— # SYSTEM PARAMETERS #—————————————————————— ##HERCPRIO 0 (deprecated; unsupported) ##TODPRIO -20 (deprecated; unsupported) ##DEVPRIO 8 (deprecated; unsupported) ##CPUPRIO 0 (deprecated; unsupported) ##ARCHMODE ESA/390 (deprecated; use ARCHLVL) ##ASN_AND_LX_REUSE disable (deprecated; use FACILITY) ##PANRATE FAST (deprecated; use PANOPT) ##PANTITLE […]

MariaDB Drivers

Installed the drivers. [codesyntax lang=”bash”] [archman@archlinux mariadb-connector-c-3.3.4-src]$ cmake CMakeLists.txt — The C compiler identification is GNU 12.2.1 — Detecting C compiler ABI info — Detecting C compiler ABI info – done — Check for working C compiler: /usr/bin/cc – skipped — Detecting C compile features — Detecting C compile features – done — Found CURL: […]

Check for Existing File

In wxWidgets, you can check if a file exists using the wxFileExists() function. This function takes a single argument, which is the full path to the file you want to check. Here’s an example of how to use wxFileExists(): [codesyntax lang=”cpp”] #include <wx/wx.h> int main(int argc, char* argv[]) { wxString filename = “/path/to/file.txt”; if (wxFileExists(filename)) […]