mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
2a6aa7770e
[BTHCI] Add a bluetooth icon
24 lines
510 B
Plaintext
24 lines
510 B
Plaintext
#include <windef.h>
|
|
#include <winuser.h>
|
|
|
|
#include "resource.h"
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
#define REACTOS_VERSION_DLL
|
|
#define REACTOS_STR_FILE_DESCRIPTION "Bluetooth Class Installer"
|
|
#define REACTOS_STR_INTERNAL_NAME "bthci"
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "bthci.dll"
|
|
|
|
#include <reactos/version.rc>
|
|
#include <reactos/manifest_dll.rc>
|
|
|
|
IDI_BLUETOOTH ICON "resources/bluetooth.ico"
|
|
|
|
/* UTF-8 */
|
|
#pragma code_page(65001)
|
|
|
|
//#ifdef LANGUAGE_EN_US
|
|
// #include "lang/en-US.rc"
|
|
//#endif
|