mirror of
https://github.com/ElliotKillick/operating-system-design-review
synced 2026-06-06 15:34:33 +00:00
4 lines
170 B
C
4 lines
170 B
C
// Export the variable
|
|
// In practice, we would export functions along with this, typically only once set, state variable
|
|
__declspec(dllexport) int shared_variable = 42;
|