2023-07-21 00:35:39 -03:00
|
|
|
# libopendx.so
|
|
|
|
Here goes everything that's not part of DirectX library.
|
|
|
|
Some examples are:
|
|
|
|
* DLL files that DirectX depends on will be turned into `libopendx.so`
|
|
|
|
such as kernel32.dll.
|
|
|
|
* Essential external functions and definitions needed to mantain software
|
2023-09-19 13:42:32 -03:00
|
|
|
compatibility such as functions contained in `<windows.h>`. But the headers
|
2023-07-21 00:35:39 -03:00
|
|
|
will be found in [`/prod_include`](../../prod_include).
|
|
|
|
|
|
|
|
All of these examples will be built in a single library and that's what
|
2023-09-19 13:42:32 -03:00
|
|
|
`libopendx.so` does.
|
2023-07-21 00:35:39 -03:00
|
|
|
|
|
|
|
The main file is [`./opendx.cpp`](./opendx.cpp)
|