12345678910111213141516171819202122232425 |
- #ifndef WINDEVICE_H
- #define WINDEVICE_H
- #include <types.h>
- #include <windows.h>
- #define INSTANCEID_PREFIX_CHAR TEXT('@')
- #define CLASS_PREFIX_CHAR TEXT('=')
- #define WILD_CHAR TEXT('*')
- #define QUOTE_PREFIX_CHAR TEXT('\'')
- #define SPLIT_COMMAND_SEP TEXT(":=")
- int WinDevice_Enable(int argc,TCHAR* argv[]);
- int WinDevice_Disable(int argc,TCHAR* argv[]);
- #define EXIT_OK (0)
- #define EXIT_REBOOT (1)
- #define EXIT_FAIL (2)
- #define EXIT_USAGE (3)
- #endif
|