mirror of https://github.com/buggins/dlangui.git
18 lines
780 B
D
18 lines
780 B
D
/***********************************************************************\
|
|
* lmuseflg.d *
|
|
* *
|
|
* Windows API header module *
|
|
* *
|
|
* Translated from MinGW API for MS-Windows 3.10 *
|
|
* *
|
|
* Placed into public domain *
|
|
\***********************************************************************/
|
|
module win32.lmuseflg;
|
|
version(Windows):
|
|
|
|
enum : uint {
|
|
USE_NOFORCE = 0,
|
|
USE_FORCE,
|
|
USE_LOTS_OF_FORCE // = 2
|
|
}
|