mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-01 22:30:42 -07:00
42d8bbc92f
## Description of change Extension of #460 An option was exposed to `spicecfg` (`P4IOBufferMode`) for toggling between the Thread and Backfill buffer fill implementations from the prior PR. ## Testing - Verified the option properly toggled between the two implementations
22 lines
404 B
C++
22 lines
404 B
C++
#pragma once
|
|
|
|
#include "../module.h"
|
|
|
|
namespace acio {
|
|
|
|
typedef enum {
|
|
THREAD_MODE = 0,
|
|
BACKFILL_MODE = 1
|
|
} MDXFBufferFillMode;
|
|
|
|
extern MDXFBufferFillMode MDXF_BUFFER_FILL_MODE;
|
|
|
|
class MDXFModule : public ACIOModule {
|
|
public:
|
|
MDXFModule(HMODULE module, HookMode hookMode);
|
|
|
|
virtual void attach() override;
|
|
~MDXFModule() override;
|
|
};
|
|
}
|