diff options
author | Martin Storsjo <martin@martin.st> | 2018-05-07 20:27:37 +0000 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2018-05-07 20:27:37 +0000 |
commit | 577b98174834401222f8353c2ad8d1a7d9306965 (patch) | |
tree | 9d729230fa6a6bd9aeb30c4c0b9263e958f0f8f3 /llvm/tools/llvm-rc/ResourceFileWriter.h | |
parent | 9410276cf7c46ceade1cc812a7d30e6ae0b3d2d1 (diff) | |
download | bcm5719-llvm-577b98174834401222f8353c2ad8d1a7d9306965.tar.gz bcm5719-llvm-577b98174834401222f8353c2ad8d1a7d9306965.zip |
[llvm-rc] Implement the BITMAP resource type
Differential Revision: https://reviews.llvm.org/D46509
llvm-svn: 331670
Diffstat (limited to 'llvm/tools/llvm-rc/ResourceFileWriter.h')
-rw-r--r-- | llvm/tools/llvm-rc/ResourceFileWriter.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/tools/llvm-rc/ResourceFileWriter.h b/llvm/tools/llvm-rc/ResourceFileWriter.h index aef3bfa3c71..6048bf47600 100644 --- a/llvm/tools/llvm-rc/ResourceFileWriter.h +++ b/llvm/tools/llvm-rc/ResourceFileWriter.h @@ -122,6 +122,10 @@ private: bool IsLastItem); Error writeAcceleratorsBody(const RCResource *); + // BitmapResource + Error visitBitmapResource(const RCResource *); + Error writeBitmapBody(const RCResource *); + // CursorResource and IconResource Error visitIconOrCursorResource(const RCResource *); Error visitIconOrCursorGroup(const RCResource *); |