16 lines
244 B
C++
16 lines
244 B
C++
export module importable;
|
|
import :internal_partition;
|
|
|
|
#include "internal-partitions_export.h"
|
|
|
|
export struct module_struct
|
|
{
|
|
private:
|
|
partition_struct p;
|
|
};
|
|
|
|
export INTERNAL_PARTITIONS_EXPORT int from_import()
|
|
{
|
|
return from_partition();
|
|
}
|